Skip to content

Commit

Permalink
Fix some syntax issues
Browse files Browse the repository at this point in the history
  • Loading branch information
agnoster committed Jan 29, 2011
1 parent 57d6276 commit cd33045
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nvm.sh
Expand Up @@ -60,7 +60,7 @@ nvm_version()
fi
if [ ! "$VERSION" ]; then
echo "N/A"
return -1
return 13
elif [ -e "$NVM_DIR/$VERSION" ]; then
(cd $NVM_DIR; ls -dG "$VERSION")
else
Expand Down Expand Up @@ -101,7 +101,7 @@ nvm()
"install" )
if [ $# -ne 2 ]; then
nvm help
return;
return
fi
[ "$NOCURL" ] && curl && return
VERSION=`nvm_version $2`
Expand Down

0 comments on commit cd33045

Please sign in to comment.