[meta] Rename some files to be more cross platform
This commit is contained in:
committed by
Jordan Harband
parent
4e9df33cb7
commit
9849bf494d
33
test/slow/nvm uninstall/Running 'nvm uninstall 0.12.6' uninstalls v0.12.6
Executable file
33
test/slow/nvm uninstall/Running 'nvm uninstall 0.12.6' uninstalls v0.12.6
Executable file
@@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
die () { echo "$@" ; exit 1; }
|
||||
|
||||
# Source nvm
|
||||
\. ../../../nvm.sh
|
||||
|
||||
# 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
|
||||
|
||||
# if zsh, set "nomatch" opt to reproduce failure from https://github.com/nvm-sh/nvm/issues/1228
|
||||
if nvm_has "setopt"; then
|
||||
setopt nomatch
|
||||
fi
|
||||
|
||||
# Uninstall it
|
||||
nvm uninstall $NVM_TEST_VERSION
|
||||
|
||||
# Make sure it uninstalled
|
||||
nvm ls | grep "$NVM_TEST_VERSION"
|
||||
[ "$?" != "0" ] || die "Failed to uninstall node"
|
||||
Reference in New Issue
Block a user