Merge pull request #82 from ivre/fix-clap

Fix clap default options since last update
This commit is contained in:
_Frky 2022-10-20 19:46:22 +02:00 committed by GitHub
commit d5d2e7c966
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -143,7 +143,8 @@ fn main() {
Arg::new("quiet")
.long("quiet")
.short('q')
.help("Quiet mode: do not output anything on stdout"),
.help("Quiet mode: do not output anything on stdout")
.num_args(0),
)
.arg(
Arg::new("format")