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.
14 lines
346 B
14 lines
346 B
#!/bin/sh |
|
|
|
die () { echo $@ ; exit 1; } |
|
|
|
. ../../../nvm.sh |
|
|
|
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed' |
|
|
|
nvm use iojs || die 'nvm use iojs failed' |
|
OUTPUT="$(nvm current)" |
|
EXPECTED_OUTPUT="iojs-v1.0.1" |
|
|
|
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \ |
|
|| die "'nvm use iojs' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'"
|
|
|