diff options
-rw-r--r-- | source/kit/file.c | 12 |
1 files 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); } |