Skip to content

Commit 4d36334

Browse files
authored
APIGEECLI_ARCH should be arm64 if LOCAL_ARCH is arm64 (#435)
Currently if `LOCAL_ARCH` is `arm64`, then `APIGEECLI_ARCH` is set to `x86_64`, which at least for me cause the wrong binary to be installed.
1 parent 57320ed commit 4d36334

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

downloadLatest.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ if [ "${TARGET_ARCH}" ]; then
3535
fi
3636

3737
case "${LOCAL_ARCH}" in
38-
x86_64|amd64|arm64)
38+
x86_64|amd64)
3939
APIGEECLI_ARCH=x86_64
4040
;;
41-
armv8*|aarch64*)
41+
arm64|armv8*|aarch64*)
4242
APIGEECLI_ARCH=arm64
4343
;;
4444
*)

0 commit comments

Comments
 (0)