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.
25 lines
373 B
25 lines
373 B
![]()
11 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
. ../../nvm.sh
|
||
|
|
||
|
# Remove the stuff we're clobbering.
|
||
![]()
11 years ago
|
[ -e ../../v0.10.7 ] && rm -R ../../v0.10.7
|
||
|
[ -e ../../v0.10.8 ] && rm -R ../../v0.10.8
|
||
![]()
11 years ago
|
|
||
|
# Install from binary
|
||
![]()
11 years ago
|
nvm install 0.10.7
|
||
|
nvm install 0.10.8
|
||
![]()
11 years ago
|
|
||
|
# Check
|
||
![]()
11 years ago
|
[ -d ../../v0.10.7 ]
|
||
|
[ -d ../../v0.10.8 ]
|
||
![]()
11 years ago
|
|
||
|
# Use the first one
|
||
![]()
11 years ago
|
nvm use 0.10.7
|
||
![]()
11 years ago
|
|
||
|
# Use the latest one
|
||
|
nvm use 0.10
|
||
![]()
11 years ago
|
node --version | grep v0.10.8
|
||
|
|