Drop print debug

This commit is contained in:
Wildan M 2025-12-05 20:57:29 +07:00
parent 99f61754b3
commit f66a09637f
No known key found for this signature in database
GPG Key ID: 01AC53185C679C79

View File

@ -94,7 +94,6 @@ fn move_dir_all_inner_fn<'a>(
for (src, srcrel, dst) in files {
let path = dst.join(&srcrel);
fs::create_dir_all(&path.parent().unwrap())?;
println!("{:?} -> {:?}", src.display(), path.display());
std::fs::rename(&src, &path)?;
}
Ok(())