From 339553e2289707d8c8f42071db878a23f64c72ab Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Tue, 17 Oct 2023 23:15:36 -0400 Subject: [PATCH] Mark `--no-cache` as global (#116) --- crates/puffin-cli/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/puffin-cli/src/main.rs b/crates/puffin-cli/src/main.rs index dd15bd542..f16db7870 100644 --- a/crates/puffin-cli/src/main.rs +++ b/crates/puffin-cli/src/main.rs @@ -27,7 +27,7 @@ struct Cli { verbose: bool, /// Avoid reading from or writing to the cache. - #[arg(long)] + #[arg(global = true, long, short)] no_cache: bool, }