Skip to content
Snippets Groups Projects
Commit cf9bcf56 authored by Michael Leuschel's avatar Michael Leuschel
Browse files

try and switch to windows 64-bit version

parent fd4145d5
No related branches found
No related tags found
No related merge requests found
...@@ -70,7 +70,7 @@ task downloadCli { ...@@ -70,7 +70,7 @@ task downloadCli {
delete file(dir) delete file(dir)
new File(dir).mkdirs() 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 n = it.getKey()
def targetdir = dir+it.getValue() def targetdir = dir+it.getValue()
...@@ -86,8 +86,8 @@ task downloadCli { ...@@ -86,8 +86,8 @@ task downloadCli {
} }
def targetdir = dir+"windows/" def targetdir = dir+"windows/"
def targetzip = targetdir+"windowslib32.zip" def targetzip = targetdir+"windowslib64.zip"
download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib32.zip",targetzip) download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib64.zip",targetzip)
FileTree zip = zipTree(targetzip) FileTree zip = zipTree(targetzip)
copy { copy {
from zip from zip
...@@ -105,7 +105,7 @@ task downloadCli2 ( type: Exec ) { ...@@ -105,7 +105,7 @@ task downloadCli2 ( type: Exec ) {
delete file(dir) delete file(dir)
new File(dir).mkdirs() 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 n = it.getKey()
def targetdir = dir+it.getValue() def targetdir = dir+it.getValue()
...@@ -121,8 +121,8 @@ task downloadCli2 ( type: Exec ) { ...@@ -121,8 +121,8 @@ task downloadCli2 ( type: Exec ) {
} }
def targetdir = dir+"windows/" def targetdir = dir+"windows/"
def targetzip = targetdir+"windowslib32.zip" def targetzip = targetdir+"windowslib64.zip"
download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib32.zip",targetzip) download("https://www3.hhu.de/stups/downloads/prob/cli/nightly/windowslib64.zip",targetzip)
FileTree zip = zipTree(targetzip) FileTree zip = zipTree(targetzip)
copy { copy {
from zip from zip
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment