From cf9bcf5635964359c9d3ddb2c58a3a9d6676c850 Mon Sep 17 00:00:00 2001 From: Michael Leuschel <leuschel@uni-duesseldorf.de> Date: Tue, 29 Jun 2021 09:56:49 +0200 Subject: [PATCH] try and switch to windows 64-bit version --- build.gradle | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index e0f8fe65..9f27432d 100644 --- a/build.gradle +++ b/build.gradle @@ -70,7 +70,7 @@ task downloadCli { delete file(dir) new File(dir).mkdirs() - ['leopard64':'macos','linux32':'linux','linux64':'linux64','win32':'windows'].each { + ['leopard64':'macos','linux32':'linux','linux64':'linux64','win64':'windows'].each { def n = it.getKey() def targetdir = dir+it.getValue() @@ -86,8 +86,8 @@ task downloadCli { } def targetdir = dir+"windows/" - def targetzip = targetdir+"windowslib32.zip" - download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib32.zip",targetzip) + def targetzip = targetdir+"windowslib64.zip" + download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib64.zip",targetzip) FileTree zip = zipTree(targetzip) copy { from zip @@ -105,7 +105,7 @@ task downloadCli2 ( type: Exec ) { delete file(dir) new File(dir).mkdirs() - ['leopard64':'macos','linux32':'linux','linux64':'linux64','win32':'windows'].each { + ['leopard64':'macos','linux32':'linux','linux64':'linux64','win64':'windows'].each { def n = it.getKey() def targetdir = dir+it.getValue() @@ -121,8 +121,8 @@ task downloadCli2 ( type: Exec ) { } def targetdir = dir+"windows/" - def targetzip = targetdir+"windowslib32.zip" - download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib32.zip",targetzip) + def targetzip = targetdir+"windowslib64.zip" + download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib64.zip",targetzip) FileTree zip = zipTree(targetzip) copy { from zip -- GitLab