Adapt to fs_extra 1.2.0

This commit is contained in:
Michael Vines
2021-02-17 10:46:20 -08:00
parent b9fb595db2
commit 9ba69a7381
7 changed files with 9 additions and 9 deletions

View File

@ -19,7 +19,7 @@ crossbeam-channel = "0.4"
dir-diff = "0.3.2"
flate2 = "1.0.14"
fnv = "1.0.7"
fs_extra = "1.1.0"
fs_extra = "1.2.0"
itertools = "0.9.0"
lazy_static = "1.4.0"
libc = "0.2.81"

View File

@ -322,7 +322,7 @@ where
std::fs::rename(append_vec_abs_path.clone(), target).or_else(|_| {
let mut copy_options = CopyOptions::new();
copy_options.overwrite = true;
fs_extra::move_items(&vec![&append_vec_abs_path], &local_dir, &copy_options)
fs_extra::move_items(&[&append_vec_abs_path], &local_dir, &copy_options)
.map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e))
.and(Ok(()))
})?;