From 2620200ff7d945c5bc17d2b854b4a6a92fd2120e Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Thu, 6 Apr 2017 08:37:04 -0400 Subject: [PATCH] Ensure output for createClone task This commit changes the task type from LoggedExec to Exec for the BWC createClone task to ensure that we can get some debug output. --- distribution/bwc-zip/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/bwc-zip/build.gradle b/distribution/bwc-zip/build.gradle index 4370fae11fd..ae7d366eab9 100644 --- a/distribution/bwc-zip/build.gradle +++ b/distribution/bwc-zip/build.gradle @@ -30,7 +30,7 @@ import org.elasticsearch.gradle.LoggedExec apply plugin: 'distribution' File checkoutDir = file("${buildDir}/bwc/checkout-5.x") -task createClone(type: LoggedExec) { +task createClone(type: Exec) { onlyIf { checkoutDir.exists() == false } commandLine = ['git', 'clone', rootDir, checkoutDir] }