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

Consistency.

This commit is contained in:
Cedric Beust 2016-03-17 21:57:56 +04:00
parent 01291c7fbd
commit 5277d76ae8
2 changed files with 2 additions and 2 deletions

View file

@ -60,6 +60,6 @@ public class PomGenerator @Inject constructor(@Assisted val project: Project) {
val pomFile = SimpleDep(mavenId).toPomFileName()
val outputFile = File(outputDir, pomFile)
outputFile.writeText(s.toString(), Charset.defaultCharset())
log(1, " Wrote $outputFile")
log(1, " Created $outputFile")
}
}

View file

@ -244,7 +244,7 @@ class KFiles {
fun saveFile(file: File, text: String) {
file.absoluteFile.parentFile.mkdirs()
file.writeText(text)
log(2, "Wrote $file")
log(2, "Created $file")
}
private fun isWindows() = System.getProperty("os.name").contains("Windows");