Readd the --force flag to the CLI
This was still present in the lib and options parsing, but was not in the Clap args list for some reason.
This commit is contained in:
parent
0f516c68eb
commit
ea746da96c
1 changed files with 3 additions and 0 deletions
|
|
@ -194,6 +194,9 @@ fn main() {
|
|||
.arg(Arg::with_name("fix")
|
||||
.help("Enable error recovery")
|
||||
.long("fix"))
|
||||
.arg(Arg::with_name("force")
|
||||
.help("Write the output even if it is larger than the input")
|
||||
.long("force"))
|
||||
.arg(Arg::with_name("zopfli")
|
||||
.help("Use the slower but better compressing Zopfli algorithm, overrides zlib-specific options")
|
||||
.short("Z")
|
||||
|
|
|
|||
Loading…
Reference in a new issue