From ccddfeb799a4d330c8ee462e2cdf230703816619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20DOUIN?= Date: Sat, 20 Apr 2024 09:07:30 +0200 Subject: [PATCH] fix install.sh aarch64 --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 07efb15..11d8c19 100644 --- a/install.sh +++ b/install.sh @@ -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;;