Fix needless_borrow lints

This commit is contained in:
Valentin Brandl 2022-12-18 08:50:52 +01:00
parent 8d90ffff1e
commit 0100b754f4
Signed by: vbrandl
GPG Key ID: CAD4DA1A789125F9

View File

@ -210,14 +210,14 @@ where
info!("Deleting cache and repository");
let cache_dir = format!("{}/{}.json", &state.cache(), repo);
let repo_dir = format!("{}/{}", &state.repos(), repo);
std::fs::remove_file(&cache_dir).or_else(|e| {
std::fs::remove_file(cache_dir).or_else(|e| {
if e.kind() == io::ErrorKind::NotFound {
Ok(())
} else {
Err(e)
}
})?;
std::fs::remove_dir_all(&repo_dir).or_else(|e| {
std::fs::remove_dir_all(repo_dir).or_else(|e| {
if e.kind() == io::ErrorKind::NotFound {
Ok(())
} else {