1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

rm: fix help text mistakenly being used as the long option

This commit is contained in:
Terts Diepraam 2022-06-24 20:03:27 +02:00
parent fa51f8b986
commit aab9134062

View file

@ -155,7 +155,7 @@ pub fn uu_app<'a>() -> Command<'a> {
.arg( .arg(
Arg::new(OPT_PROMPT) Arg::new(OPT_PROMPT)
.short('i') .short('i')
.long("prompt before every removal") .help("prompt before every removal")
) )
.arg( .arg(
Arg::new(OPT_PROMPT_MORE) Arg::new(OPT_PROMPT_MORE)