mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Consistency.
This commit is contained in:
parent
01291c7fbd
commit
5277d76ae8
2 changed files with 2 additions and 2 deletions
|
@ -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")
|
||||
}
|
||||
}
|
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue