Browse Source
Also fix `nvm uninstall v1.0.3` so it won't uninstall it if it's the current version. node versions will still take priority if there's ever a version overlap.master
![ljharb@gmail.com](/assets/img/avatar_default.png)
2 changed files with 18 additions and 2 deletions
@ -0,0 +1,14 @@
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh |
||||
|
||||
die () { echo $@ ; exit 1; } |
||||
|
||||
. ../../../nvm.sh |
||||
|
||||
nvm deactivate 2>&1 >/dev/null || die 'deactivate failed' |
||||
|
||||
nvm use 'v1.0.0' || die 'nvm use v1.0.0 failed' |
||||
OUTPUT="$(nvm current)" |
||||
EXPECTED_OUTPUT="$(nvm_version v1.0.0)" |
||||
|
||||
[ "_$OUTPUT" = "_$EXPECTED_OUTPUT" ] \ |
||||
|| die "'nvm use v1.0.0' + 'nvm current' did not output '$EXPECTED_OUTPUT'; got '$OUTPUT'" |
Loading…
Reference in new issue