added arm64 in common_auth.sh (#191)

This commit is contained in:
Yuwei Sung 2023-03-14 02:06:34 -05:00 committed by GitHub
parent 8ad7cf6b65
commit b3c19fd7fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ fi
OUTPUT=${CHART_HOME}/output
OUTPUT_BIN=${OUTPUT}/bin
PULSARCTL_VERSION=v0.4.0
PULSARCTL_VERSION=v2.8.2.1
PULSARCTL_BIN=${HOME}/.pulsarctl/pulsarctl
export PATH=${HOME}/.pulsarctl/plugins:${PATH}
@ -36,6 +36,7 @@ discoverArch() {
x86_64) ARCH="amd64";;
i686) ARCH="386";;
i386) ARCH="386";;
arm64) ARCH="arm64";;
esac
}