Make sure nvm install works without a version argument when .nvmrc specifies a version.

This commit is contained in:
Jordan Harband
2014-04-16 02:25:58 -07:00
parent eb6031cb58
commit bf8abf1052
3 changed files with 69 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
#!/bin/sh
set -e
. ../../../nvm.sh
NVM_TEST_VERSION=v0.10.7
# Remove the stuff we're clobbering.
[ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION
# Install from binary
cat "$NVM_TEST_VERSION" > .nvmrc
nvm install
# Check
[ -d ../../../$NVM_TEST_VERSION ]
nvm run $NVM_TEST_VERSION --version | grep $NVM_TEST_VERSION