Remove the check for the version because the checksums for the arm-pi builds will not be available ever.

This commit is contained in:
Remy Loubradou 2013-05-29 10:54:02 +01:00
parent 273f52adc2
commit 0ce4361944

4
nvm.sh
View File

@ -116,8 +116,8 @@ nvm_checksum()
{ {
if [ "$1" = "$2" ]; then if [ "$1" = "$2" ]; then
return return
elif [[ "$VERSION" =~ ^v0\.10\.[0-5]$ && "$arch" == 'arm-pi' && "$binavail" == 1 ]]; then elif [[ "$arch" == 'arm-pi' && "$binavail" == 1 ]]; then
echo 'Checksums matching failed but this failure will be ignored because no shasum is available for node v0.10.[0-5] for arm-pi' echo 'Checksums matching failed but this failure will be ignored because no shasum is available for node for arm-pi'
return return
else else
echo 'Checksums do not match.' echo 'Checksums do not match.'