Adds support for latest mac uname check

This commit is contained in:
spencergibb
2024-02-26 15:06:24 -05:00
parent 6601ad88ad
commit d21b776f56

View File

@@ -150,6 +150,9 @@ function main() {
if [ "$(uname -m)" == aarch64 ]; then
PLATFORM=arm64
fi
if [ "$(uname -m)" == arm64 ]; then
PLATFORM=arm64
fi
if [[ ${EDITION} == 'oss' ]]; then
download_oss
elif [[ ${EDITION} == 'enterprise' ]]; then