Skip to content

Commit 5daa0ea

Browse files
committed
Don't default to arm64 yet; still testing
1 parent d1a16cb commit 5daa0ea

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

installers/install.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ Linux)
104104
Darwin)
105105
OS="darwin"
106106
ARCH="amd64"
107-
arch="`uname -m`"
108-
if [ $arch = "arm64" ]; then ARCH="arm64"; fi
107+
if [ -n "$OVERRIDE_ARCH" ]; then
108+
ARCH="$OVERRIDE_ARCH"
109+
fi
109110
DOWNLOADEXT=".tar.gz"
110111
SHA256SUM="shasum -a 256"
111112
;;

0 commit comments

Comments
 (0)