You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
345 B
20 lines
345 B
#!/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 |
|
|
|
|
|
|