1
1
mirror of https://github.com/mgree/ffs.git synced 2024-09-11 19:17:40 +03:00

--pretty overrides --no-output and --quiet, rather than conflicting

This commit is contained in:
Michael Greenberg 2022-02-22 11:51:54 -05:00
parent bdab5791cf
commit bfcd291c07

View File

@ -143,8 +143,8 @@ pub fn app() -> App<'static, 'static> {
Arg::with_name("PRETTY")
.help("Pretty-print output (may increase size)")
.long("pretty")
.conflicts_with("NOOUTPUT")
.conflicts_with("QUIET")
.overrides_with("NOOUTPUT")
.overrides_with("QUIET")
)
.arg(
Arg::with_name("MOUNT")