From b41ab974da26f53727368df57185963f0361b34e Mon Sep 17 00:00:00 2001
From: Mitya Selivanov <automainint@guattari.tech>
Date: Fri, 15 Sep 2023 22:53:43 +0200
Subject: test

---
 source/kit/file.c | 12 ++++--------
 1 file changed, 4 insertions(+), 8 deletions(-)

diff --git a/source/kit/file.c b/source/kit/file.c
index 1483195..5bc8f9a 100644
--- a/source/kit/file.c
+++ b/source/kit/file.c
@@ -308,19 +308,15 @@ kit_status_t kit_file_remove_recursive(kit_str_t        path,
       }
 
       for (i = 0; i < list.files.size; i++) {
-        printf("    >> 1   \n");
-        fflush(stdout);
         str_builder_t full_path = kit_path_join(
             path, WRAP_STR(list.files.values[i]), alloc);
-        printf("    >> 2   \n");
-        fflush(stdout);
+        printf("  REMOVE %s  ", BS(full_path));
         kit_status_t s = kit_file_remove_recursive(
             WRAP_STR(full_path), alloc);
-        printf("    >> 3   \n");
-        fflush(stdout);
+        if (s != KIT_OK) {
+          printf("  FAILED  \n"); fflush(stdout);
+        }
         DA_DESTROY(full_path);
-        printf("    >> 4   \n");
-        fflush(stdout);
         assert(s == KIT_OK);
       }
 
-- 
cgit v1.2.3