mv: fix "needless borrow" clippy warnings

This commit is contained in:
Daniel Hofstetter 2022-11-04 09:52:09 +01:00
parent 96ef306cb3
commit 7df36bb153

View file

@ -475,11 +475,11 @@ fn rename_symlink_fallback(from: &Path, to: &Path) -> io::Result<()> {
{
if path_symlink_points_to.exists() {
if path_symlink_points_to.is_dir() {
windows::fs::symlink_dir(&path_symlink_points_to, &to)?;
windows::fs::symlink_dir(&path_symlink_points_to, to)?;
} else {
windows::fs::symlink_file(&path_symlink_points_to, &to)?;
windows::fs::symlink_file(&path_symlink_points_to, to)?;
}
fs::remove_file(&from)?;
fs::remove_file(from)?;
} else {
return Err(io::Error::new(
io::ErrorKind::NotFound,