mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 00:17:11 -07:00
fixed typo in log of Io.mkdir()
This commit is contained in:
parent
ca122ee55a
commit
0f6820c30f
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue