fix debug message

This commit is contained in:
postscriptum 2025-07-03 12:35:42 +03:00
parent 037a5bfe74
commit 77d0650aef

View file

@ -225,6 +225,7 @@ impl Nex {
}
pub fn clean(&self, name: &str, ignore: HashSet<PathBuf>) -> Result<Clean> {
println!("\t\tcleanup...");
let mut r = Clean::default();
for entry in
walkdir::WalkDir::new(PathBuf::from(self.users.get(name).unwrap())).follow_links(false)
@ -232,7 +233,7 @@ impl Nex {
let e = entry?;
let p = e.path();
let s = p.to_string_lossy();
println!("check `{s}`...");
println!("\t\tcheck `{s}`...");
if ignore.contains(p) {
continue;
}