Mark `--no-cache` as global (#116)

This commit is contained in:
Charlie Marsh 2023-10-17 23:15:36 -04:00 committed by GitHub
parent 89db5d79bc
commit 339553e228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ struct Cli {
verbose: bool, verbose: bool,
/// Avoid reading from or writing to the cache. /// Avoid reading from or writing to the cache.
#[arg(long)] #[arg(global = true, long, short)]
no_cache: bool, no_cache: bool,
} }