diff options
author | Joas Schilling <213943+nickvergessen@users.noreply.github.com> | 2024-01-10 09:21:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 09:21:46 +0100 |
commit | 02f9d79ad6e79ac76546952a3ef28a7b15c538ef (patch) | |
tree | dd4ad1acc149c7d89b7b2acd0a9e27a160131829 /core | |
parent | 73b14a28f24a02e08664c6cfc2cb42f5539e92b1 (diff) | |
parent | b3e5c14a6cc1819ed70cf213d15e347766c01771 (diff) | |
download | nextcloud-server-02f9d79ad6e79ac76546952a3ef28a7b15c538ef.tar.gz nextcloud-server-02f9d79ad6e79ac76546952a3ef28a7b15c538ef.zip |
Merge pull request #42488 from nextcloud/fix/issue-42476-occ-update
fix(Update): Handle upstream exception scenario cleanly
Diffstat (limited to 'core')
-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; } |