mirror of
https://github.com/FliegendeWurst/ripgrep-all.git
synced 2024-11-09 22:40:37 +00:00
fix help for --rga-cache-max-blob-len
Since the arguments are preprocessed in `split_args`, all option arguments must use equals. This was missing for --rga-cache-max-blob-len and the help was then misleading: --rga-cache-max-blob-len <cache-max-blob-len> Max compressed size to cache
This commit is contained in:
parent
47bef56e2a
commit
758d0d13c3
@ -80,7 +80,8 @@ pub struct RgaArgs {
|
||||
#[structopt(
|
||||
long = "--rga-cache-max-blob-len",
|
||||
default_value = "2000000",
|
||||
hidden_short_help = true
|
||||
hidden_short_help = true,
|
||||
require_equals = true
|
||||
)]
|
||||
/// Max compressed size to cache
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user