From 82960223476e6681c1dcd9f9b64291a56b2c53f6 Mon Sep 17 00:00:00 2001 From: Nyannyacha Date: Wed, 1 Oct 2025 08:19:04 +0000 Subject: [PATCH] fix(cli): reflect exit code correctly when running unbundle command --- cli/src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/src/main.rs b/cli/src/main.rs index 82dcccca..75e573f3 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -436,9 +436,10 @@ fn main() -> Result { "Eszip extracted successfully inside path {}", output_path.to_str().unwrap() ); + ExitCode::SUCCESS + } else { + ExitCode::FAILURE } - - ExitCode::SUCCESS } _ => {