From d1a90ca15c726a5f748860648477816e335d243f Mon Sep 17 00:00:00 2001 From: Daniel Bretoi Date: Fri, 19 Dec 2014 10:41:53 -0800 Subject: [PATCH] work like system which. show system node without changing to use it --- nvm.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nvm.sh b/nvm.sh index bd81595..721a889 100644 --- a/nvm.sh +++ b/nvm.sh @@ -965,7 +965,7 @@ nvm() { if [ "_$VERSION" = '_system' ]; then if nvm_has_system_node >/dev/null 2>&1; then - echo $(nvm use system && echo dirname $(which node)) + echo $(nvm deactivate > /dev/null 2>&1 && echo $(which node)) return else echo "System version of node not found." >&2 @@ -982,7 +982,7 @@ nvm() { echo "$VERSION version is not installed yet" >&2 return 1 fi - echo $NVM_DIR/$VERSION/bin + echo $NVM_DIR/$VERSION/bin/node ;; "alias" ) mkdir -p "$NVM_DIR/alias"