[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:
parent
96456fbd91
commit
66adcb2962
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue