diff options
Diffstat (limited to 'cli/fs_util.rs')
-rw-r--r-- | cli/fs_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/fs_util.rs b/cli/fs_util.rs index dbebc75c0..552f4c939 100644 --- a/cli/fs_util.rs +++ b/cli/fs_util.rs @@ -456,7 +456,7 @@ pub fn symlink_dir(oldpath: &Path, newpath: &Path) -> Result<(), AnyError> { #[cfg(not(unix))] { use std::os::windows::fs::symlink_dir; - symlink_dir(&oldpath, &newpath).map_err(err_mapper)?; + symlink_dir(oldpath, newpath).map_err(err_mapper)?; } Ok(()) } |