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); } }