mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-07-03 22:23:43 +00:00
Merge 0f05655ee6cddb0c34022c793011467a28494366 into 6b932e59c358e8ad52d212e333b43969129ec918
This commit is contained in:
commit
a3b06189f0
3
nvm.sh
3
nvm.sh
@ -321,13 +321,14 @@ nvm()
|
|||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
echo "nvm: install $VERSION failed!"
|
echo "nvm: install $VERSION failed!"
|
||||||
|
return 1
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
"uninstall" )
|
"uninstall" )
|
||||||
[ $# -ne 2 ] && nvm help && return
|
[ $# -ne 2 ] && nvm help && return
|
||||||
if [[ $2 == `nvm_version` ]]; then
|
if [[ $2 == `nvm_version` ]]; then
|
||||||
echo "nvm: Cannot uninstall currently-active node version, $2."
|
echo "nvm: Cannot uninstall currently-active node version, $2."
|
||||||
return
|
return 1
|
||||||
fi
|
fi
|
||||||
VERSION=`nvm_version $2`
|
VERSION=`nvm_version $2`
|
||||||
if [ ! -d $NVM_DIR/$VERSION ]; then
|
if [ ! -d $NVM_DIR/$VERSION ]; then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user