From ad2713b13a0feb0644f55f5a88be0ea89f301e29 Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Sun, 14 Sep 2014 16:04:13 -0700 Subject: [PATCH] `&>` is a bash-specific extension for redirecting both stdout and stderr. --- ...te the \"current\" symlink if $NVM_SYMLINK_CURRENT is false" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/test/fast/Running \"nvm use x\" should not create the \"current\" symlink if $NVM_SYMLINK_CURRENT is false" "b/test/fast/Running \"nvm use x\" should not create the \"current\" symlink if $NVM_SYMLINK_CURRENT is false" index 8ae7b29..23bbe38 100755 --- "a/test/fast/Running \"nvm use x\" should not create the \"current\" symlink if $NVM_SYMLINK_CURRENT is false" +++ "b/test/fast/Running \"nvm use x\" should not create the \"current\" symlink if $NVM_SYMLINK_CURRENT is false" @@ -34,7 +34,7 @@ function cleanup() { function runNvmUse() { mkdir ../../${TEST_NODE_VERSION} - nvm use ${TEST_NODE_VERSION} &> /dev/null + nvm use ${TEST_NODE_VERSION} > /dev/null 2>&1 rmdir ../../${TEST_NODE_VERSION} }