From 4cf940153c80cbf370e998a9c55f32f0a82ec082 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 19 Apr 2014 23:39:28 -0700 Subject: [PATCH] Use node 0.9 for these testsso that people aren't likely to have it installed --- ...install two versions and use the latest one | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/test/slow/nvm install/install two versions and use the latest one b/test/slow/nvm install/install two versions and use the latest one index 08c7085..951eabb 100755 --- a/test/slow/nvm install/install two versions and use the latest one +++ b/test/slow/nvm install/install two versions and use the latest one @@ -4,21 +4,21 @@ set -e . ../../../nvm.sh # Remove the stuff we're clobbering. -[ -e ../../../v0.10.7 ] && rm -R ../../../v0.10.7 -[ -e ../../../v0.10.8 ] && rm -R ../../../v0.10.8 +[ -e ../../../v0.9.7 ] && rm -R ../../../v0.9.7 +[ -e ../../../v0.9.12 ] && rm -R ../../../v0.9.12 # Install from binary -nvm install 0.10.7 -nvm install 0.10.8 +nvm install 0.9.7 +nvm install 0.9.12 # Check -[ -d ../../../v0.10.7 ] -[ -d ../../../v0.10.8 ] +[ -d ../../../v0.9.7 ] +[ -d ../../../v0.9.12 ] # Use the first one -nvm use 0.10.7 +nvm use 0.9.7 # Use the latest one -nvm use 0.10 -node --version | grep v0.10.8 +nvm use 0.9 +node --version | grep v0.9.12