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

fixed typo in log of Io.mkdir()

This commit is contained in:
DevCharly 2016-06-07 10:29:02 +02:00
parent ca122ee55a
commit 0f6820c30f

View file

@ -73,7 +73,7 @@ class Io(val dryRun: Boolean = false) {
} }
fun mkdir(dir: File) { fun mkdir(dir: File) {
log("rm -rf $dir") log("mkdir $dir")
if (! dryRun) { if (! dryRun) {
dir.mkdirs() dir.mkdirs()
} }