From c1122d6ab31548aff9bf8aaa4a855a771355c8e9 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 16 Jun 2025 10:30:49 +0200 Subject: fix(yt/cli): Remove duplicated short flag key (help also uses 'h') --- crates/yt/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/yt/src/cli.rs b/crates/yt/src/cli.rs index 73a857b..952cd53 100644 --- a/crates/yt/src/cli.rs +++ b/crates/yt/src/cli.rs @@ -432,7 +432,7 @@ pub enum CacheCommand { /// Invalidate all cache entries Invalidate { /// Also delete the cache path - #[arg(short, long)] + #[arg(short = 'f', long)] hard: bool, }, -- cgit 1.4.1