Skip to content

Commit 5313e8c

Browse files
authored
Merge pull request #186 from nextcloud/Rello-patch-2
default macOS + daily => stable
2 parents bc06d0d + e4548a6 commit 5313e8c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

index.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,12 @@
8787
die();
8888
}
8989

90+
// for macOS we currently can not deliver daily do to dependencies of the sparkle updater
91+
// we will default macOS daily => stable
92+
if ($platform === 'macos' && $channel === 'daily') {
93+
$channel = 'stable';
94+
}
95+
9096
$config = require_once __DIR__ . '/config/config.php';
9197

9298
// Deliver update

0 commit comments

Comments
 (0)