Skip to content

Commit 97315d1

Browse files
Wil Marquesjasongin
authored andcommitted
aarch64 treated as arm64 (#142)
1 parent 99d34fb commit 97315d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nvs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ nvs() {
5959
fi
6060

6161
# Download a node binary to use to bootstrap the NVS script.
62-
local NODE_ARCH="$(uname -m | sed 's/x86_64/x64/' | sed 's/i686/x86/')"
62+
local NODE_ARCH="$(uname -m | sed 's/x86_64/x64/' | sed 's/i686/x86/' | sed 's/aarch64/arm64/' )"
6363
local NODE_FULLNAME="node-v${NODE_VERSION}-${NVS_OS}-${NODE_ARCH}"
6464
local NODE_URI="${NODE_BASE_URI}v${NODE_VERSION}/${NODE_FULLNAME}${NODE_ARCHIVE_EXT}"
6565
local NODE_ARCHIVE="${NVS_HOME}/cache/${NODE_FULLNAME}${NODE_ARCHIVE_EXT}"

0 commit comments

Comments
 (0)