`&>` is a bash-specific extension for redirecting both stdout and stderr.

master
Jordan Harband 2014-09-14 16:04:13 -07:00
parent 243fc04164
commit ad2713b13a
1 changed files with 1 additions and 1 deletions

View File

@ -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}
}