diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-16 10:30:49 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-16 10:30:49 +0200 |
commit | c1122d6ab31548aff9bf8aaa4a855a771355c8e9 (patch) | |
tree | 9623243ad951f07fcd5db5aeeba62fa99557f12e | |
parent | feat(yt/cli): Add support for command line completions (diff) | |
download | yt-c1122d6ab31548aff9bf8aaa4a855a771355c8e9.zip |
fix(yt/cli): Remove duplicated short flag key (help also uses 'h')
-rw-r--r-- | crates/yt/src/cli.rs | 2 |
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, }, |