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@nextcloud.com>2022-05-11 15:49:47 +0300
committerMatthieu Gallien <matthieu.gallien@nextcloud.com>2022-05-11 15:49:47 +0300
commite938c5f7d58d5105687d22094ebf53398b356f0d (patch)
treef4e64d106c00f478f67b09944655c9f46454c6c6
parentf3f2e802d9d7e7dadd16f06acfbd069909077cb3 (diff)
use the proper windows 64 bits suffix
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
-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';
}
}