Merge pull request #192 from gpad/nvmrc

Use .nvmrc if present
master
Tim Caswell 2013-01-25 11:50:11 -08:00
commit 0ec339e040
1 changed files with 21 additions and 1 deletions

22
nvm.sh
View File

@ -16,6 +16,14 @@ if [ ! -z "$(which unsetopt 2>/dev/null)" ]; then
unsetopt nomatch 2>/dev/null
fi
# Obtain nvm version from rc file
function rc_nvm_version {
if [ -e .nvmrc ]; then
RC_VERSION=`cat .nvmrc | head -n 1`
echo "Found .nvmrc files with version <$RC_VERSION>"
fi
}
# Expand a version using the version cache
nvm_version()
{
@ -344,7 +352,19 @@ nvm()
fi
;;
"use" )
if [ $# -ne 2 ]; then
if [ $# -eq 0 ]; then
nvm help
return
fi
if [ $# -eq 1 ]; then
rc_nvm_version
if [ ! -z $RC_VERSION ]; then
VERSION=`nvm_version $RC_VERSION`
fi
else
VERSION=`nvm_version $2`
fi
if [ -z $VERSION ]; then
nvm help
return
fi