List the default value for `--accounts` in CLI help (#35254)
This commit is contained in:
parent
d88b7d95b1
commit
a1c39a3c22
|
@ -604,7 +604,11 @@ fn main() {
|
|||
.long("accounts")
|
||||
.value_name("PATHS")
|
||||
.takes_value(true)
|
||||
.help("Comma separated persistent accounts location");
|
||||
.help(
|
||||
"Persistent accounts location. \
|
||||
May be specified multiple times. \
|
||||
[default: <LEDGER>/accounts]",
|
||||
);
|
||||
let accounts_hash_cache_path_arg = Arg::with_name("accounts_hash_cache_path")
|
||||
.long("accounts-hash-cache-path")
|
||||
.value_name("PATH")
|
||||
|
|
|
@ -276,7 +276,10 @@ pub fn app<'a>(version: &'a str, default_args: &'a DefaultArgs) -> App<'a, 'a> {
|
|||
.value_name("PATHS")
|
||||
.takes_value(true)
|
||||
.multiple(true)
|
||||
.help("Comma separated persistent accounts location"),
|
||||
.help("Comma separated persistent accounts location. \
|
||||
May be specified multiple times. \
|
||||
[default: <LEDGER>/accounts]"
|
||||
),
|
||||
)
|
||||
.arg(
|
||||
Arg::with_name("account_shrink_path")
|
||||
|
|
Loading…
Reference in New Issue