Skip to content

Commit cbbc0e2

Browse files
committed
feat(Updater): Ignore incompatible apps if the channel is git
Signed-off-by: provokateurin <kate@provokateurin.de>
1 parent 48051c9 commit cbbc0e2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

lib/private/Updater.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -360,6 +360,10 @@ protected function doAppUpgrade(): void {
360360
* @throws \Exception
361361
*/
362362
private function checkAppsRequirements(): void {
363+
if ($this->serverVersion->getChannel() === 'git') {
364+
return;
365+
}
366+
363367
$isCoreUpgrade = $this->isCodeUpgrade();
364368
$apps = $this->appManager->getEnabledApps();
365369
$version = implode('.', Util::getVersion());

0 commit comments

Comments
 (0)