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.
|
#!/bin/sh |
|
|
|
set -e |
|
. ../../nvm.sh |
|
|
|
VERSION=v0.10.26 |
|
|
|
# Remove the stuff we're clobbering. |
|
[ -e ../../$VERSION ] && rm -R ../../$VERSION |
|
|
|
# Install from source |
|
nvm install -s $VERSION |
|
|
|
# Check |
|
[ -d ../../$VERSION ] |
|
nvm run $VERSION --version | grep $VERSION
|
|
|