nvm/test/installation/install two versions and us...

25 lines
361 B
Plaintext
Raw Normal View History

#!/bin/sh
set -e
2014-09-15 08:51:34 +08:00
. ../../nvm.sh
# Remove the stuff we're clobbering.
2014-09-15 08:51:34 +08:00
[ -e ../../v0.9.7 ] && rm -R ../../v0.9.7
[ -e ../../v0.9.12 ] && rm -R ../../v0.9.12
# Install from binary
nvm install 0.9.7
nvm i 0.9.12
# Check
2014-09-15 08:51:34 +08:00
[ -d ../../v0.9.7 ]
[ -d ../../v0.9.12 ]
# Use the first one
nvm use 0.9.7
# Use the latest one
nvm use 0.9
node --version | grep v0.9.12