From 6de2c30ba669f4d37dc29d96bb77d095a53c6628 Mon Sep 17 00:00:00 2001 From: Dave Gaeddert Date: Fri, 20 Sep 2024 11:15:37 -0500 Subject: [PATCH] Add ARCH=arm64 to install script --- install-standalone.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/install-standalone.sh b/install-standalone.sh index ee216d8785..5920d96ff0 100644 --- a/install-standalone.sh +++ b/install-standalone.sh @@ -36,6 +36,8 @@ ARCH=x64 elif [[ "\$ARCH" == aarch* ]]; then ARCH=arm + elif [[ "\$ARCH" == "arm64" ]]; then + ARCH=arm64 else echoerr "unsupported arch: \$ARCH" exit 1