Merge pull request #1239 from codingskynet/fix/support-aarch64

Add "aarch64" on arm64 cond
This commit is contained in:
Ed Page 2025-02-20 08:50:41 -06:00 committed by GitHub
commit 092b7056bb
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ fi
if [[ ! -x ${COMMAND} ]]; then
VERSION=1.29.8
if [[ "$(uname -m)" == "arm64" ]]; then
if [[ "$(uname -m)" == "arm64" || "$(uname -m)" == "aarch64" ]]; then
ARCH="aarch64"
else
ARCH="x86_64"