diff options
author | Josh Richards <josh.t.richards@gmail.com> | 2023-12-26 15:40:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-26 15:40:16 -0500 |
commit | b3e5c14a6cc1819ed70cf213d15e347766c01771 (patch) | |
tree | 99c885588288dab286755bf8b265af9cdb7367c8 /core/Command | |
parent | 5125c34f011651821d3a1d6e3ce2d0337ab75fe9 (diff) | |
download | nextcloud-server-b3e5c14a6cc1819ed70cf213d15e347766c01771.tar.gz nextcloud-server-b3e5c14a6cc1819ed70cf213d15e347766c01771.zip |
fix(Update): Handle upstream exception scenario cleanly
Fixes #42476
Signed-off-by: Josh Richards <josh.t.richards@gmail.com>
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/App/Update.php | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |