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:
parent
048191ceb6
commit
2620200ff7
|
@ -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]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue