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:
Zhaofeng Li 2022-01-27 18:48:25 -08:00
parent 6d5b7d7e3e
commit 856f82644e

View file

@ -132,7 +132,7 @@ pub async fn run(_global_args: &ArgMatches, local_args: &ArgMatches) -> Result<(
let options = {
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
};