Skip to content

Commit

Permalink
fix install.sh aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Apr 20, 2024
1 parent 30f00d0 commit ccddfeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ case $system in
linux|freebsd)
case $machine in
x86_64) target=x86_64-linux;;
arm64|aarch64) target=arm64-linux;;
arm64|aarch64) target=aarch64-linux;;
*) die "Unsupported machine $machine for system $system";;
esac;;

darwin)
case $machine in
x86_64) target=x86_64-macos;;
arm64|aarch64) target=arm64-macos;;
arm64|aarch64) target=aarch64-macos;;
*) die "Unsupported machine $machine for system $system";;
esac;;

Expand Down

0 comments on commit ccddfeb

Please sign in to comment.