Skip to content

Commit

Permalink
Adds support for latest mac uname check
Browse files Browse the repository at this point in the history
  • Loading branch information
spencergibb committed Feb 26, 2024
1 parent 6601ad8 commit d21b776
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/test/bash/install_vault.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d21b776

Please sign in to comment.