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.
This commit is contained in:
Jason Tedor 2017-04-06 08:37:04 -04:00
parent 048191ceb6
commit 2620200ff7
1 changed files with 1 additions and 1 deletions

View File

@ -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]
}