Suggest rerunning empty-dirs if dupes found.

This commit is contained in:
Bill Thiede 2020-05-10 07:52:54 -07:00
parent 334d2a5e53
commit 8af62e313b

View File

@ -71,6 +71,9 @@ fn print_dupes(lib: &MovieLibrary) {
for path in &delete_paths {
println!(r#"mv "{}" /storage/media/to-be-deleted/"#, path);
}
if delete_paths.len() > 0 {
println!("superdeduper update-compact-metadata && superdeduper empty-dirs")
}
}
fn print_all(videos: HashMap<String, CompactMetadata>) {