From 29c2ec6113542d65b45fb6cb6897954f1ea225af Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 7 Oct 2024 19:34:07 +0200 Subject: fix(cli): Avoid having to interleave `sedowa` with dashes Otherwise the `sedowa` command would be `se-do-wa` --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.rs') 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; -- cgit 1.4.1