remove remove_dir_all() of paths' parents (which we didn't make to begin with)

This commit is contained in:
Rob Walker 2019-03-02 11:50:20 -08:00 committed by Grimes
parent a94880574b
commit f4c5b9ccb0
2 changed files with 0 additions and 2 deletions

Binary file not shown.

View File

@ -177,8 +177,6 @@ fn cleanup_dirs(paths: &str) {
let paths = get_paths_vec(&paths);
paths.iter().for_each(|p| {
let _ignored = remove_dir_all(p);
let path = Path::new(p);
let _ignored = remove_dir_all(path.parent().unwrap());
});
}