From d9cc83f4e775ed7f59cf21f350b2140c29cf6b07 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Mon, 23 Feb 2026 13:52:08 +0900 Subject: refactor(cli): replace std::process::exit() with bail_silent in command handlers Improves testability and ensures proper resource cleanup by returning errors through the existing MozartError/exit_code mechanism instead of terminating the process directly. Co-Authored-By: Claude Opus 4.6 --- crates/mozart/src/commands/search.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'crates/mozart/src/commands/search.rs') diff --git a/crates/mozart/src/commands/search.rs b/crates/mozart/src/commands/search.rs index 6da85f9..d7be821 100644 --- a/crates/mozart/src/commands/search.rs +++ b/crates/mozart/src/commands/search.rs @@ -121,7 +121,9 @@ pub async fn execute( "Unsupported format \"{format}\". See help for supported formats." ) ); - std::process::exit(1); + return Err(mozart_core::exit_code::bail_silent( + mozart_core::exit_code::GENERAL_ERROR, + )); } let (all_results, _total) = -- cgit v1.3.1