summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
Diffstat (limited to 'koch.nim')
-rwxr-xr-xkoch.nim6
1 files changed, 2 insertions, 4 deletions
diff --git a/koch.nim b/koch.nim
index 4524ed3e8..29fa86cb3 100755
--- a/koch.nim
+++ b/koch.nim
@@ -157,10 +157,8 @@ proc cleanAux(dir: string) =
       of "nimcache": 
         echo "removing dir: ", path
         removeDir(path)
-      of "dist", ".git":
-        nil
-      else:
-        cleanAux(path)
+      of "dist", ".git": nil
+      else: cleanAux(path)
     else: nil
 
 proc removePattern(pattern: string) =