Merge pull request #470 from creationix/has_system_node

Adding nvm_has_system_node
master
Jordan Harband 2014-07-15 00:03:25 -07:00
commit 00ca5288b0
2 changed files with 33 additions and 0 deletions

4
nvm.sh
View File

@ -28,6 +28,10 @@ nvm_download() {
fi fi
} }
nvm_has_system_node() {
[ $(nvm deactivate 2> /dev/null && command -v node) != '' ]
}
# Make zsh glob matching behave same as bash # Make zsh glob matching behave same as bash
# This fixes the "zsh: no matches found" errors # This fixes the "zsh: no matches found" errors
if nvm_has "unsetopt"; then if nvm_has "unsetopt"; then

View File

@ -0,0 +1,29 @@
#!/bin/sh
cleanup () {
rm ../../../v0.1.2/node
rmdir ../../../v0.1.2
}
die () { echo $@ ; exit 1; }
. ../../../nvm.sh
mkdir ../../../v0.1.2
touch ../../../v0.1.2/node
nvm use 0.1.2
if command -v node; then
nvm_has_system_node
else
! nvm_has_system_node
fi
nvm deactivate /dev/null 2>&1
if command -v node; then
nvm_has_system_node
else
! nvm_has_system_node
fi