1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00

Rephrase.

This commit is contained in:
Cedric Beust 2017-03-27 15:44:57 -07:00
parent 32dc14e393
commit 76fdd1543a

View file

@ -152,7 +152,7 @@ class BuildFileCompiler @Inject constructor(@Assisted("buildSources") val buildS
val reason = val reason =
if (containsProfiles) "profiles were found" if (containsProfiles) "profiles were found"
else if (forceRecompile) "forceRecompile is true" else if (forceRecompile) "forceRecompile is true"
else "it is not up to date" else "it's been modified"
kobaltLog(2, " Need to recompile $buildSources because $reason") kobaltLog(2, " Need to recompile $buildSources because $reason")
buildScriptJarFile.deleteRecursively() buildScriptJarFile.deleteRecursively()
@ -166,7 +166,6 @@ class BuildFileCompiler @Inject constructor(@Assisted("buildSources") val buildS
noIncrementalKotlin = true noIncrementalKotlin = true
}.compile(context = context) }.compile(context = context)
// //
// Generate the file that contains the list of active profiles for this build file // Generate the file that contains the list of active profiles for this build file
// //