summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-05-02 00:01:50 +0200
committerAraq <rumpf_a@web.de>2011-05-02 00:01:50 +0200
commit4d5c3ebd468fa17a02a9abb9814c04e18baef309 (patch)
treec9e3aaac91fbc6c3d78315434f9438d3c0245d7c /koch.nim
parentfcabc0f9f46cbec1b9755110f29312c81d3a451a (diff)
downloadNim-4d5c3ebd468fa17a02a9abb9814c04e18baef309.tar.gz
little repo cleanup
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")