diff options
author | Araq <rumpf_a@web.de> | 2011-05-02 00:01:50 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-05-02 00:01:50 +0200 |
commit | 4d5c3ebd468fa17a02a9abb9814c04e18baef309 (patch) | |
tree | c9e3aaac91fbc6c3d78315434f9438d3c0245d7c /koch.nim | |
parent | fcabc0f9f46cbec1b9755110f29312c81d3a451a (diff) | |
download | Nim-4d5c3ebd468fa17a02a9abb9814c04e18baef309.tar.gz |
little repo cleanup
Diffstat (limited to 'koch.nim')
-rwxr-xr-x | koch.nim | 4 |
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") |