Merge pull request #467 from jsdevel/adding-current-symlink

Adding a symlink in .nvm to the current version.

Fixes #430. Closes #447. Relates to #358. Fixes #355. Closes #313. Fixes #381.
This commit is contained in:
Jordan Harband
2014-07-13 11:23:27 -07:00
3 changed files with 32 additions and 1 deletions

1
nvm.sh
View File

@@ -546,6 +546,7 @@ nvm() {
export NODE_PATH
export NVM_PATH="$NVM_DIR/$VERSION/lib/node"
export NVM_BIN="$NVM_DIR/$VERSION/bin"
rm -f "$NVM_DIR/current" && ln -s "$NVM_DIR/$VERSION" "$NVM_DIR/current"
echo "Now using node $VERSION"
;;
"run" )