1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00
This commit is contained in:
Cedric Beust 2016-04-02 07:14:36 -07:00
parent a90ef6e6fa
commit 1b11fbec6b

View file

@ -107,10 +107,10 @@ public class BuildFileCompiler @Inject constructor(@Assisted("buildFiles") val b
log(2, "Running build file ${buildFile.name} jar: $buildScriptJarFile")
if (buildScriptUtil.isUpToDate(buildFile, buildScriptJarFile)) {
log(2, "Build file is up to date")
log(2, " Build file is up to date")
return TaskResult()
} else {
log(2, "Need to recompile ${buildFile.name}")
log(2, " Need to recompile ${buildFile.name}")
buildScriptJarFile.delete()
val result = kotlinCompilePrivate {