cp: better error message for target-directory

This commit is contained in:
Sam Caldwell
2022-03-20 13:50:39 +01:00
committed by Sylvestre Ledru
parent efd627bb20
commit 979909e371
+1 -1
View File
@@ -319,7 +319,7 @@ pub fn uu_app<'a>() -> App<'a> {
if Path::new(s).is_dir() {
return Ok(());
}
Err("must specify a directory")
Err(format!("'{}' is not a directory", s))
})
.help("copy all SOURCE arguments into target-directory"))
.arg(Arg::new(options::NO_TARGET_DIRECTORY)