1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

cp: better error message for target-directory

This commit is contained in:
Sam Caldwell 2022-02-07 20:06:27 -07:00 committed by Sylvestre Ledru
parent efd627bb20
commit 979909e371

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)