From 33823be1edf00e0887f68d7a02e4cea9d28df43e Mon Sep 17 00:00:00 2001 From: Pakin Date: Wed, 10 Sep 2025 14:02:12 +0700 Subject: [PATCH] add debug for path --- src/recipe_functions/common.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/recipe_functions/common.rs b/src/recipe_functions/common.rs index 55539ce..a469a32 100644 --- a/src/recipe_functions/common.rs +++ b/src/recipe_functions/common.rs @@ -74,7 +74,9 @@ pub fn get_all_files_in_directory(directory_path: &str) -> Vec { let entry = entry.unwrap(); let path = entry.path(); if path.is_file() { - files.push(path.as_os_str().to_str().unwrap().to_string()); + let npath = path.as_os_str().to_str().unwrap().to_string(); + println!("pushed {}", npath); + files.push(npath); } }