fix syntax error in install.sh

This commit is contained in:
Mohamed Daahir 2024-02-24 21:02:00 +00:00
parent 93800e28f1
commit c79400f309

View File

@ -4,7 +4,7 @@ set -e
if [ "$(uname -s)" = "Darwin" ] && [ "$(uname -m)" = "x86_64" ]; then if [ "$(uname -s)" = "Darwin" ] && [ "$(uname -m)" = "x86_64" ]; then
target="x86_64-apple-darwin" target="x86_64-apple-darwin"
if [ "$(uname -s)" = "Darwin" ] && [ "$(uname -m)" = "arm64" ]; then elif [ "$(uname -s)" = "Darwin" ] && [ "$(uname -m)" = "arm64" ]; then
target="aarch64-apple-darwin" target="aarch64-apple-darwin"
elif [ "$(uname -s)" = "Linux" ] && [ "$(uname -m)" = "x86_64" ]; then elif [ "$(uname -s)" = "Linux" ] && [ "$(uname -m)" = "x86_64" ]; then
target="x86_64-unknown-linux-musl" target="x86_64-unknown-linux-musl"