From 1d6158440259dd88bf076d4d75de9043538d707b Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Mon, 14 Jul 2014 20:32:20 -0700 Subject: [PATCH] Making sure this test cleans up after itself. --- ...vm use x\" should create and change the \"current\" symlink" | 2 ++ 1 file changed, 2 insertions(+) diff --git "a/test/fast/Running \"nvm use x\" should create and change the \"current\" symlink" "b/test/fast/Running \"nvm use x\" should create and change the \"current\" symlink" index b2b979d..781eb94 100755 --- "a/test/fast/Running \"nvm use x\" should create and change the \"current\" symlink" +++ "b/test/fast/Running \"nvm use x\" should create and change the \"current\" symlink" @@ -5,6 +5,7 @@ rm -rf ../../v0.10.29 mkdir ../../v0.10.29 nvm use 0.10.29 +rmdir ../../v0.10.29 if [ ! -L ../../current ];then echo "Expected 'current' symlink to be created!" @@ -21,6 +22,7 @@ fi rm -rf ../../v0.11.13 mkdir ../../v0.11.13 nvm use 0.11.13 +rmdir ../../v0.11.13 newLink="$(readlink ../../current)"