fix install.sh aarch64

This commit is contained in:
Clément DOUIN 2024-04-20 09:07:30 +02:00
parent 30f00d0867
commit ccddfeb799
No known key found for this signature in database
GPG Key ID: 353E4A18EE0FAB72
1 changed files with 2 additions and 2 deletions

View File

@ -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;;