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.
34 lines
739 B
34 lines
739 B
![]()
9 years ago
|
#!/bin/sh
|
||
|
|
||
![]()
8 years ago
|
die () { echo "$@" ; exit 1; }
|
||
![]()
9 years ago
|
|
||
|
# Source nvm
|
||
![]()
8 years ago
|
\. ../../../nvm.sh
|
||
![]()
9 years ago
|
|
||
|
# Version to install/uninstall
|
||
|
NVM_TEST_VERSION=0.12.6
|
||
|
|
||
|
# Make sure it's not already here
|
||
|
[ -e ../../../$NVM_TEST_VERSION ] && rm -R ../../../$NVM_TEST_VERSION
|
||
|
|
||
|
# Install it
|
||
|
nvm install $NVM_TEST_VERSION
|
||
|
|
||
|
# Make sure it installed
|
||
|
nvm ls | grep "$NVM_TEST_VERSION" || die "Failed to install node"
|
||
|
|
||
|
# Switch to another version so we can uninstall
|
||
|
nvm use 0.12.7
|
||
|
|
||
![]()
6 years ago
|
# if zsh, set "nomatch" opt to reproduce failure from https://github.com/nvm-sh/nvm/issues/1228
|
||
![]()
8 years ago
|
if nvm_has "setopt"; then
|
||
|
setopt nomatch
|
||
|
fi
|
||
|
|
||
![]()
9 years ago
|
# Uninstall it
|
||
|
nvm uninstall $NVM_TEST_VERSION
|
||
|
|
||
|
# Make sure it uninstalled
|
||
|
nvm ls | grep "$NVM_TEST_VERSION"
|
||
|
[ "$?" != "0" ] || die "Failed to uninstall node"
|