mirror of
https://github.com/soywod/himalaya.git
synced 2024-11-21 10:30:20 +00:00
fix install.sh aarch64
This commit is contained in:
parent
30f00d0867
commit
ccddfeb799
1 changed files with 2 additions and 2 deletions
|
@ -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;;
|
||||
|
||||
|
|
Loading…
Reference in a new issue