summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
Diffstat (limited to 'koch.nim')
-rwxr-xr-xkoch.nim4
1 files changed, 3 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim
index 2200578ad..4524ed3e8 100755
--- a/koch.nim
+++ b/koch.nim
@@ -174,7 +174,9 @@ proc clean(args: string) =
   removePattern("doc/*.html")
   cleanAux(getCurrentDir())
   for kind, path in walkDir(getCurrentDir() / "build"):
-    if kind == pcDir: RemoveDir(path)
+    if kind == pcDir: 
+      echo "removing dir: ", path
+      RemoveDir(path)
 
 proc tests(args: string) =
   exec("nimrod cc tests/tester")