Merge pull request #17722 from dakrone/fix-vagrant-output
[TEST] Fix extra backslash causing sed to hang
This commit is contained in:
commit
e38e4514a8
|
@ -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