diff options
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") |