about summary refs log tree commit diff stats
path: root/crates
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-16 10:30:49 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-16 10:30:49 +0200
commitc1122d6ab31548aff9bf8aaa4a855a771355c8e9 (patch)
tree9623243ad951f07fcd5db5aeeba62fa99557f12e /crates
parentfeat(yt/cli): Add support for command line completions (diff)
downloadyt-c1122d6ab31548aff9bf8aaa4a855a771355c8e9.zip
fix(yt/cli): Remove duplicated short flag key (help also uses 'h')
Diffstat (limited to 'crates')
-rw-r--r--crates/yt/src/cli.rs2
1 files changed, 1 insertions, 1 deletions
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,
     },