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.
17 lines
255 B
17 lines
255 B
![]()
12 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
. ../../nvm.sh
|
||
|
|
||
![]()
11 years ago
|
VERSION=v0.10.7
|
||
![]()
11 years ago
|
|
||
![]()
12 years ago
|
# Remove the stuff we're clobbering.
|
||
![]()
11 years ago
|
[ -e ../../$VERSION ] && rm -R ../../$VERSION
|
||
![]()
12 years ago
|
|
||
|
# Install from source
|
||
![]()
11 years ago
|
nvm install -s $VERSION
|
||
![]()
12 years ago
|
|
||
|
# Check
|
||
![]()
11 years ago
|
[ -d ../../$VERSION ]
|
||
|
nvm run $VERSION --version | grep $VERSION
|