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.
12 lines
229 B
12 lines
229 B
12 years ago
|
#!/bin/sh
|
||
|
|
||
9 years ago
|
set -ex
|
||
|
|
||
8 years ago
|
die () { echo "$@" ; exit 1; }
|
||
11 years ago
|
|
||
8 years ago
|
\. ../../nvm.sh
|
||
11 years ago
|
|
||
|
nvm deactivate 2>&1
|
||
|
|
||
|
[ "$(nvm current)" = "system" ] || [ "$(nvm current)" = "none" ] || die '"nvm current" did not report "system" or "none" when deactivated'
|