From 66adcb2962fa2dd0804c559f7a30911bfd7f8297 Mon Sep 17 00:00:00 2001 From: Lee Hinman Date: Wed, 13 Apr 2016 10:24:39 -0600 Subject: [PATCH] [TEST] Fix extra backslash causing sed to hang This caused sed to hang and the output never to show for the smoke test command --- qa/vagrant/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qa/vagrant/build.gradle b/qa/vagrant/build.gradle index 1de1e8f0968..735a401e542 100644 --- a/qa/vagrant/build.gradle +++ b/qa/vagrant/build.gradle @@ -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)