[Fix] fix node download link for armv8l

Fixes #3035
This commit is contained in:
Deniz
2023-04-29 16:41:31 -07:00
committed by Jordan Harband
parent 70aa611abc
commit 5410ae57ba
3 changed files with 7 additions and 1 deletions

2
nvm.sh
View File

@@ -1913,7 +1913,7 @@ nvm_get_arch() {
case "${HOST_ARCH}" in
x86_64 | amd64) NVM_ARCH="x64" ;;
i*86) NVM_ARCH="x86" ;;
aarch64) NVM_ARCH="arm64" ;;
aarch64 | armv8l) NVM_ARCH="arm64" ;;
*) NVM_ARCH="${HOST_ARCH}" ;;
esac