From 2a82bf09f1ad4df41a6ade5c8ecf852e15802aad Mon Sep 17 00:00:00 2001 From: Matt Rendina Date: Tue, 1 Dec 2020 14:44:37 -0500 Subject: Have curl follow redirects (#75) Conda started serving the macos installer using a redirect. This allows retrieval. --- jenkins/dispatch.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'jenkins/dispatch.groovy') diff --git a/jenkins/dispatch.groovy b/jenkins/dispatch.groovy index df6cba0..dfa5084 100644 --- a/jenkins/dispatch.groovy +++ b/jenkins/dispatch.groovy @@ -198,7 +198,7 @@ node(LABEL) { CONDA_BASE_URL = [0..-2] } def dl_cmds = ["wget --no-verbose --server-response --no-check-certificate", - "curl -OSs"] + "curl -LOSs"] def dl_cmd = null def stat1 = 999 for (cmd in dl_cmds) { -- cgit