Skip to content

Commit

Permalink
Merge pull request #146 from nextcloud/fixDailyConfig
Browse files Browse the repository at this point in the history
fix daily config
  • Loading branch information
tobiasKaminsky authored Jun 28, 2024
2 parents 8bbd985 + b244316 commit ca6c412
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,15 @@
],
'daily' => [
'linux' => [
'version' => $dailyReleaseDateLinux = '20240628';
'versionstring' => "Nextcloud Daily " . $dailyReleaseDateLinux = '20240628';
'downloadurl' => $dailyUrl . 'linux/linux-' . $dailyReleaseDateLinux = '20240628';
'version' => $dailyReleaseDateLinux,
'versionstring' => "Nextcloud Daily " . $dailyReleaseDateLinux,
'downloadurl' => $dailyUrl . 'linux/linux-' . $dailyReleaseDateLinux. '.AppImage',
'web' => 'https://nextcloud.com/install',
],
'win32' => [
'version' => $dailyReleaseDateWindows = '20240628';
'versionstring' => "Nextcloud Daily " . $dailyReleaseDateWindows = '20240628';
'downloadurl' => $dailyUrl . 'windows/windows-' . $dailyReleaseDateWindows = '20240628';
'version' => $dailyReleaseDateWindows,
'versionstring' => "Nextcloud Daily " . $dailyReleaseDateWindows,
'downloadurl' => $dailyUrl . 'windows/windows-' . $dailyReleaseDateWindows . '.msi',
'web' => 'https://nextcloud.com/install',
],
'macos' => [
Expand Down

0 comments on commit ca6c412

Please sign in to comment.