realpath: require arguments again

This commit is contained in:
Terts Diepraam 2022-10-13 20:06:27 +02:00
parent b0c200e831
commit 14e3c5176c
2 changed files with 6 additions and 0 deletions

View file

@ -171,6 +171,7 @@ pub fn uu_app() -> Command {
.arg(
Arg::new(ARG_FILES)
.action(ArgAction::Append)
.required(true)
.value_parser(NonEmptyStringValueParser::new())
.value_hint(clap::ValueHint::AnyPath),
)

View file

@ -453,3 +453,8 @@ fn test_realpath_trailing_slash() {
.succeeds()
.stdout_contains(format!("{}no_dir\n", std::path::MAIN_SEPARATOR));
}
#[test]
fn test_realpath_empty() {
new_ucmd!().fails().code_is(1);
}