From 5a4e6c9623e8dff1ae1e474336433af22d8121e2 Mon Sep 17 00:00:00 2001 From: Alex Clarke Date: Wed, 4 Feb 2026 10:24:59 -0700 Subject: [PATCH] style: Addressed CR comments about adding an explicit Command::ConfigPath to the main command match statement --- src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 543ef47..033c440 100644 --- a/src/main.rs +++ b/src/main.rs @@ -185,7 +185,11 @@ async fn main() -> Result<()> { generate(shell, &mut cli, "managarr", &mut io::stdout()) } Command::TailLogs { no_color } => tail_logs(no_color).await?, - _ => {} + Command::ConfigPath => { + unreachable!( + "ConfigPath command is handled before this match and should be unreachable here" + ); + } }, None => { let app_nw = Arc::clone(&app);