From e195fccdb7ceac31ecc9c17324ce028bc9a96ccf Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sat, 3 May 2014 23:29:21 -0700 Subject: [PATCH] Escaping backticks --- .../Running \"nvm run\" should pick up .nvmrc version" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/test/slow/nvm run/Running \"nvm run\" should pick up .nvmrc version" "b/test/slow/nvm run/Running \"nvm run\" should pick up .nvmrc version" index 181e3fc..58151ef 100755 --- "a/test/slow/nvm run/Running \"nvm run\" should pick up .nvmrc version" +++ "b/test/slow/nvm run/Running \"nvm run\" should pick up .nvmrc version" @@ -6,7 +6,7 @@ die () { echo $@ ; exit 1; } . ../../../nvm.sh echo "0.10.7" > .nvmrc -[ "$(nvm run --version | tail -1)" = "v0.10.7" ] || die "`nvm run` failed to run with the .nvmrc version" +[ "$(nvm run --version | tail -1)" = "v0.10.7" ] || die "\`nvm run\` failed to run with the .nvmrc version" -[ "$(nvm run --version | head -1)" = "Found .nvmrc files with version <0.10.7>" ] || die "`nvm run` failed to print out the \"found in .nvmrc\" message" +[ "$(nvm run --version | head -1)" = "Found .nvmrc files with version <0.10.7>" ] || die "\`nvm run\` failed to print out the \"found in .nvmrc\" message"