Set Meta #19

Merged
phoenix merged 7 commits from set_meta into devel 2025-04-16 02:25:14 +00:00
Showing only changes of commit d3795c8277 - Show all commits

View File

@@ -123,13 +123,9 @@ mod tests {
source_path: &String,
destination_path: &String,
) -> Result<u64, std::io::Error> {
println!("Copying file");
let src_path = std::path::Path::new(source_path);
let dest_path = std::path::Path::new(destination_path);
println!("Src: {:?}", src_path);
println!("Dest: {:?}", dest_path);
match std::fs::copy(src_path, dest_path) {
Ok(bytes) => Ok(bytes),
Err(err) => Err(err),