[Tests] use $NVM_DIR instead of relative paths
This commit is contained in:
@@ -3,31 +3,31 @@
|
||||
export NVM_SYMLINK_CURRENT=true
|
||||
. ../../nvm.sh
|
||||
|
||||
rm -rf ../../v0.10.29
|
||||
mkdir ../../v0.10.29
|
||||
rm -rf "${NVM_DIR}/v0.10.29"
|
||||
mkdir "${NVM_DIR}/v0.10.29"
|
||||
nvm use 0.10.29
|
||||
rmdir ../../v0.10.29
|
||||
rmdir "${NVM_DIR}/v0.10.29"
|
||||
|
||||
if [ ! -L ../../current ];then
|
||||
if [ ! -L "${NVM_DIR}/current" ];then
|
||||
echo "Expected 'current' symlink to be created!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
oldLink="$(readlink ../../current)"
|
||||
oldLink="$(readlink "${NVM_DIR}/current")"
|
||||
|
||||
if [ "$(basename $oldLink)" != 'v0.10.29' ];then
|
||||
echo "Expected 'current' to point to v0.10.29 but was $oldLink"
|
||||
if [ "$(basename "${oldLink}")" != 'v0.10.29' ];then
|
||||
echo "Expected 'current' to point to v0.10.29 but was ${oldLink}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -rf ../../v0.11.13
|
||||
mkdir ../../v0.11.13
|
||||
rm -rf "${NVM_DIR}/v0.11.13"
|
||||
mkdir "${NVM_DIR}/v0.11.13"
|
||||
nvm use 0.11.13
|
||||
rmdir ../../v0.11.13
|
||||
rmdir "${NVM_DIR}/v0.11.13"
|
||||
|
||||
newLink="$(readlink ../../current)"
|
||||
newLink="$(readlink "${NVM_DIR}/current")"
|
||||
|
||||
if [ "$(basename $newLink)" != 'v0.11.13' ];then
|
||||
if [ "$(basename "${newLink}")" != 'v0.11.13' ];then
|
||||
echo "Expected 'current' to point to v0.11.13 but was $newLink"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user