Skip to content
Snippets Groups Projects
Commit a90a9607 authored by felmer's avatar felmer
Browse files

SSDM-4098: using 'curl' instead of 'wget' in downloadFile()

SVN: 37228
parent 883db5a5
No related branches found
No related tags found
No related merge requests found
......@@ -249,7 +249,7 @@ def downloadFile(url, filename) {
def file = project(':openbis').file("../openbis_standard_technologies/targets/downloads/$filename")
if (file.exists() == false || System.currentTimeMillis() - file.lastModified() > 3600000) {
file.getParentFile().mkdirs()
ext.executeFunction('wget', [url, '-q', '-O', file.getAbsolutePath()])
ext.executeFunction('curl', [url, '-s', '-o', file.getAbsolutePath()])
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment