From b2ef0cb14ce7dbfebf1e66a6bc8342c868e87ee0 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 16 Dec 2013 23:25:50 +0900 Subject: [PATCH] Update nvm.sh Fix - this line should be nvm use 0.10 - no 'v', and no incremental version number. --- nvm.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/nvm.sh b/nvm.sh index b70fcc5..a6cae86 100755 --- a/nvm.sh +++ b/nvm.sh @@ -190,13 +190,13 @@ nvm() { echo " nvm copy-packages Install global NPM packages contained in to current version" echo echo "Example:" - echo " nvm install v0.10.23 Install a specific version number" - echo " nvm use v0.10.23 Use the latest available v0.10.23 release" - echo " nvm run v0.10.23 myApp.js Run myApp.js using node v0.10.23" - echo " nvm alias default v0.10.23 Version node will be use on login shell by default" + echo " nvm install v0.10.23 Install a specific version number" + echo " nvm use 0.10 Use the latest available 0.10.x release" + echo " nvm run 0.10.23 myApp.js Run myApp.js using node v0.10.23" + echo " nvm alias default v0.10.23 Version node will be use on login shell by default" echo echo "Note:" - echo " to remove, delete or uninstall nvm - just remove ~/.nvm, ~/.npm, ~/.bower folders" + echo " to remove, delete or uninstall nvm - just remove ~/.nvm, ~/.npm and ~/.bower folders" echo ;;