[TEST] Fix extra backslash causing sed to hang

This caused sed to hang and the output never to show for the smoke test
command
This commit is contained in:
Lee Hinman 2016-04-13 10:24:39 -06:00
parent 96456fbd91
commit 66adcb2962
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ for (String box : availableBoxes) {
dependsOn up
finalizedBy halt
commandLine 'vagrant', 'ssh', box, '--command',
"set -o pipefail && ${smokeTestCommand} | sed -ue \'s/^/ ${box}: /'"
"set -o pipefail && ${smokeTestCommand} | sed -ue 's/^/ ${box}: /'"
}
vagrantSmokeTest.dependsOn(smoke)