xenoterracide
12/21/2017, 11:40 AMif ( !gradle.includedBuilds.isEmpty() ) {
task("build", {
dependsOn(gradle.includedBuild("is").task(":build"))
dependsOn(gradle.includedBuild("sec").task(":build"))
})
}
else {
// gitClone
}
how would I call the task gitClone
in the else? like actually run the task not configure it