This commit is contained in:
Koen Punt 2013-06-03 12:28:47 -07:00
commit a3b06189f0

3
nvm.sh
View File

@ -321,13 +321,14 @@ nvm()
fi
else
echo "nvm: install $VERSION failed!"
return 1
fi
;;
"uninstall" )
[ $# -ne 2 ] && nvm help && return
if [[ $2 == `nvm_version` ]]; then
echo "nvm: Cannot uninstall currently-active node version, $2."
return
return 1
fi
VERSION=`nvm_version $2`
if [ ! -d $NVM_DIR/$VERSION ]; then