Fix npm update code

https://npmjs.org/install.sh redirects to https://www.npmjs.org/install.sh
so this code would fail if it ever npm was absent when we get here.
master
Hiro Asari 2014-10-12 12:23:52 -04:00
parent d49443e1fb
commit 44d5776110
1 changed files with 2 additions and 2 deletions

4
nvm.sh
View File

@ -675,10 +675,10 @@ nvm() {
if nvm_version_greater 0.2.3 "$VERSION"; then
echo "npm requires node v0.2.3 or higher" >&2
else
nvm_download https://npmjs.org/install.sh -o - | clean=yes npm_install=0.2.19 sh
nvm_download -L https://npmjs.org/install.sh -o - | clean=yes npm_install=0.2.19 sh
fi
else
nvm_download https://npmjs.org/install.sh -o - | clean=yes sh
nvm_download -L https://npmjs.org/install.sh -o - | clean=yes sh
fi
fi
else