diff options
Diffstat (limited to 'crates/mozart/src/commands/reinstall.rs')
| -rw-r--r-- | crates/mozart/src/commands/reinstall.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/reinstall.rs b/crates/mozart/src/commands/reinstall.rs index 1665786..b38d9f7 100644 --- a/crates/mozart/src/commands/reinstall.rs +++ b/crates/mozart/src/commands/reinstall.rs @@ -153,7 +153,9 @@ pub async fn execute( if selected.is_empty() { eprintln!("Found no packages to reinstall, aborting."); - std::process::exit(1); + return Err(mozart_core::exit_code::bail_silent( + mozart_core::exit_code::GENERAL_ERROR, + )); } // Step 6: For each selected package, find its locked metadata. |
