We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70aa611 commit 5410ae5Copy full SHA for 5410ae5
nvm.sh
@@ -1913,7 +1913,7 @@ nvm_get_arch() {
1913
case "${HOST_ARCH}" in
1914
x86_64 | amd64) NVM_ARCH="x64" ;;
1915
i*86) NVM_ARCH="x86" ;;
1916
- aarch64) NVM_ARCH="arm64" ;;
+ aarch64 | armv8l) NVM_ARCH="arm64" ;;
1917
*) NVM_ARCH="${HOST_ARCH}" ;;
1918
esac
1919
test/fast/Unit tests/nvm_get_arch
@@ -80,5 +80,6 @@ run_test x86 osx x86
80
run_test amd64 osx x64
81
82
run_test arm64 smartos x64
83
+run_test armv8l smartos x64
84
85
cleanup
test/mocks/uname_linux_armv8l
@@ -0,0 +1,5 @@
1
+if [ "_$1" = "_-m" ]; then
2
+ echo "armv8l"
3
+else
4
+ echo "Linux 3.18.14-14721103 #1 SMP PREEMPT Thu Mar 5 20:35:37 KST 2020 armv8l armv8l armv8l GNU/Linux"
5
+fi
0 commit comments