Merge pull request #17722 from dakrone/fix-vagrant-output

[TEST] Fix extra backslash causing sed to hang
This commit is contained in:
Lee Hinman 2016-04-13 12:45:03 -06:00
commit e38e4514a8
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)