diff options
-rwxr-xr-x | main.odin | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -73,8 +73,9 @@ main :: proc() { fmt.printf("📁 {}\n", path_info.name)
walk_directory(path_info.fullpath, &file_count, &file_list, 1)
} else {
- fmt.println("File submitted! Processing file...\n")
+ fmt.println("File submitted! Processing file...")
append(&file_list, strings.clone(path_info.fullpath))
+ file_count = 2 // Yes, I know
}
for file, f in file_list {
|