Hide deprecated fail-at-end flag.

This commit is contained in:
jcamiel 2023-10-06 17:24:33 +02:00
parent 8ab5503149
commit ee98301902
No known key found for this signature in database
GPG Key ID: 07FF11CFD55356CC

View File

@ -133,6 +133,7 @@ pub fn fail_at_end() -> clap::Arg {
clap::Arg::new("fail_at_end")
.long("fail-at-end")
.help("Fail at end")
.hide(true)
.action(ArgAction::SetTrue)
}