apply_local: Fix argument name typo
Caught by debug assertions in clap 3.0. We should switch to the Derive API where possible to prevent this from happening in the future.
This commit is contained in:
parent
6d5b7d7e3e
commit
856f82644e
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ pub async fn run(_global_args: &ArgMatches, local_args: &ArgMatches) -> Result<(
|
||||||
|
|
||||||
let options = {
|
let options = {
|
||||||
let mut options = Options::default();
|
let mut options = Options::default();
|
||||||
options.set_upload_keys(!local_args.is_present("no-upload-keys"));
|
options.set_upload_keys(!local_args.is_present("no-keys"));
|
||||||
options
|
options
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue