Merge pull request #583 from danielb2/which

Adds `nvm which`
This commit is contained in:
Jordan Harband
2014-12-17 01:26:50 -08:00
5 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/sh
mkdir ../../../v0.0.2
mkdir ../../../v0.0.20
. ../../../nvm.sh
die () { echo $@ ; exit 1; }
# The result should contain only the appropriate version numbers.
nvm which 0.0.2 | grep "$NVM_DIR/v0.0.2/bin" > /dev/null
if [ $? -ne 0 ]; then
die '"nvm which 0.0.2" did not contain the correct path'
fi
nvm which 0.0.20 | grep "$NVM_DIR/v0.0.20/bin" > /dev/null
if [ $? -ne 0 ]; then
die '"nvm which 0.0.2" did not contain the correct path'
fi

View File

@@ -0,0 +1,6 @@
#!/bin/sh
. ../../../nvm.sh
nvm which nonexistent_version
[ "$?" = "1" ]

View File

@@ -0,0 +1,2 @@
rmdir ../../../v0.0.2 >/dev/null 2>&1
rmdir ../../../v0.0.20 >/dev/null 2>&1