From ba14867b2b3babc590c4192d8455d856b7528fd2 Mon Sep 17 00:00:00 2001 From: Nyannyacha Date: Wed, 1 Oct 2025 08:13:51 +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 b6ad72796..3a3dbaf64 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -363,9 +363,10 @@ fn main() -> Result { "Eszip extracted successfully inside path {}", output_path.to_str().unwrap() ); + ExitCode::SUCCESS + } else { + ExitCode::FAILURE } - - ExitCode::SUCCESS } _ => {