Revert "Ensure output for createClone task"

This reverts commit 2620200ff7.
This commit is contained in:
Jason Tedor 2017-04-15 13:54:01 -04:00
parent cd8e059885
commit 51db6ab7dc
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: Exec) {
task createClone(type: LoggedExec) {
onlyIf { checkoutDir.exists() == false }
commandLine = ['git', 'clone', rootDir, checkoutDir]
}