Change variable name to fix zsh parse issue

master
Nicholas Hwang 2014-02-11 22:50:58 -05:00
parent c19535a3f5
commit 9a88e3656c
1 changed files with 2 additions and 2 deletions

4
nvm.sh
View File

@ -364,9 +364,9 @@ nvm() {
echo "Uninstalled node $VERSION"
# Rm any aliases that point to uninstalled version.
for A in `\grep -l $VERSION $NVM_DIR/alias/* 2>/dev/null`
for ALIAS in `\grep -l $VERSION $NVM_DIR/alias/* 2>/dev/null`
do
nvm unalias `basename $A`
nvm unalias `basename $ALIAS`
done
;;