Merge pull request #742 from sjasperse/bugfix/rasp-pi-2-arch-detect

adding architecture detection for Raspberry Pi 2
master
Jordan Harband 2015-04-26 00:04:00 -07:00
commit 54d2d70048
1 changed files with 1 additions and 1 deletions

2
nvm.sh
View File

@ -973,7 +973,7 @@ nvm_install_node_binary() {
if nvm_binary_available "$VERSION"; then
local NVM_ARCH
NVM_ARCH="$(nvm_get_arch)"
if [ $NVM_ARCH = "armv6l" ]; then
if [ $NVM_ARCH = "armv6l" ] || [ $NVM_ARCH = "armv7l" ]; then
NVM_ARCH="arm-pi"
fi
t="$VERSION-$NVM_OS-$NVM_ARCH"