From b3e5c14a6cc1819ed70cf213d15e347766c01771 Mon Sep 17 00:00:00 2001 From: Josh Richards Date: Tue, 26 Dec 2023 15:40:16 -0500 Subject: [PATCH] fix(Update): Handle upstream exception scenario cleanly Fixes #42476 Signed-off-by: Josh Richards --- core/Command/App/Update.php | 1 + 1 file changed, 1 insertion(+) diff --git a/core/Command/App/Update.php b/core/Command/App/Update.php index ca6a6758dbd22..7d47034398fdb 100644 --- a/core/Command/App/Update.php +++ b/core/Command/App/Update.php @@ -108,6 +108,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int 'exception' => $e, ]); $output->writeln('Error: ' . $e->getMessage()); + $result = false; $return = 1; }