diff --git a/src/uu/mv/src/mv.rs b/src/uu/mv/src/mv.rs index 9f7a9661885..e8fe921ad99 100644 --- a/src/uu/mv/src/mv.rs +++ b/src/uu/mv/src/mv.rs @@ -480,7 +480,10 @@ fn rename( if is_empty_dir(to) { fs::remove_dir(to)?; } else { - return Err(io::Error::new(io::ErrorKind::Other, "Directory not empty")); + return Err(io::Error::new( + io::ErrorKind::Other, + "A directory with the same name exists at destination", + )); } } }