about summary refs log tree commit diff stats
path: root/src/main.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-07 19:34:07 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-07 19:34:07 +0200
commit29c2ec6113542d65b45fb6cb6897954f1ea225af (patch)
treefb9a7299bc485d5dacc1ec2472bd3df6fd888788 /src/main.rs
parentfix(crates/yt_dlp/wrappers/info_json): Add further info.json fields (diff)
downloadyt-29c2ec6113542d65b45fb6cb6897954f1ea225af.tar.gz
yt-29c2ec6113542d65b45fb6cb6897954f1ea225af.zip
fix(cli): Avoid having to interleave `sedowa` with dashes
Otherwise the `sedowa` command would be `se-do-wa`
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index c5115ac..0961dd3 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -107,7 +107,7 @@ async fn main() -> Result<()> {
                 _ => handle_select_cmd(&app, cmd, None).await?,
             }
         }
-        Command::SeDoWa {} => {
+        Command::Sedowa {} => {
             select::select(&app, false, false).await?;
 
             let max_cache_size = app.config.download.max_cache_size;