From 4d75dd3618dacbbcd5fb00027be5491320547f3f Mon Sep 17 00:00:00 2001 From: Bryce Groff Date: Tue, 8 Oct 2024 12:49:11 -0700 Subject: [PATCH] fix: parse aarch64 correctly. (#132) --- abctl_install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/abctl_install.sh b/abctl_install.sh index 2af90fc..407dc1d 100755 --- a/abctl_install.sh +++ b/abctl_install.sh @@ -206,6 +206,8 @@ _get_os() { _get_arch() { if uname -m | grep -q "arm"; then echo arm64 + elif uname -m | grep -q "aarch64"; then + echo arm64 else echo amd64 fi