Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/client_updater_server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Gallien <matthieu_gallien@yahoo.fr>2022-05-11 16:23:56 +0300
committerGitHub <noreply@github.com>2022-05-11 16:23:56 +0300
commitc562b68a53cb1dd09d33a9cd77ebc43fb89264ba (patch)
treef4e64d106c00f478f67b09944655c9f46454c6c6
parentf3f2e802d9d7e7dadd16f06acfbd069909077cb3 (diff)
parente938c5f7d58d5105687d22094ebf53398b356f0d (diff)
Merge pull request #82 from nextcloud/fixWindows64
use the proper windows 64 bits suffix
-rw-r--r--config/config.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/config.php b/config/config.php
index 31c894e..378e838 100644
--- a/config/config.php
+++ b/config/config.php
@@ -54,7 +54,7 @@ if (version_compare($version, '3.1.0') < 0) {
if ($buildArch === 'i386') {
$windows_suffix = '-x86.msi';
} else {
- $windows_suffix = '-x86_64.msi';
+ $windows_suffix = '-x64.msi';
}
}