From: Josh Richards Date: Tue, 26 Dec 2023 20:40:16 +0000 (-0500) Subject: fix(Update): Handle upstream exception scenario cleanly X-Git-Tag: v29.0.0beta1~531^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=refs%2Fpull%2F42488%2Fhead;p=nextcloud-server.git fix(Update): Handle upstream exception scenario cleanly Fixes #42476 Signed-off-by: Josh Richards --- diff --git a/core/Command/App/Update.php b/core/Command/App/Update.php index ca6a6758dbd..7d47034398f 100644 --- a/core/Command/App/Update.php +++ b/core/Command/App/Update.php @@ -108,6 +108,7 @@ class Update extends Command { 'exception' => $e, ]); $output->writeln('Error: ' . $e->getMessage()); + $result = false; $return = 1; }