Skip to content

Commit 2bdc066

Browse files
spencergibbmp911de
authored andcommitted
Updates for running Vault on m1 mac.
See gh-727, see gh-728
1 parent 742d6ad commit 2bdc066

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/test/bash/install_vault.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
set -o errexit
99

1010
EDITION="${EDITION:-oss}"
11-
VAULT_OSS="${VAULT_OSS:-1.6.1}"
12-
VAULT_ENT="${VAULT_ENT:-1.6.1}"
11+
VAULT_OSS="${VAULT_OSS:-1.8.1}"
12+
VAULT_ENT="${VAULT_ENT:-1.8.1}"
1313
UNAME=$(uname -s | tr '[:upper:]' '[:lower:]')
1414
VERBOSE=false
1515
VAULT_DIRECTORY=vault
@@ -147,6 +147,9 @@ function main() {
147147

148148
initialize
149149
parse_options "$@"
150+
if [ "$(uname -m)" == arm64 ]; then
151+
PLATFORM=arm64
152+
fi
150153
if [ "$(uname -m)" == aarch64 ]; then
151154
PLATFORM=arm64
152155
fi

0 commit comments

Comments
 (0)