diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-12-01 14:44:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-01 14:44:37 -0500 |
commit | 2a82bf09f1ad4df41a6ade5c8ecf852e15802aad (patch) | |
tree | e414b0f5761e0a8ce200f5254bf721d5d3868d3d | |
parent | 939818f66922f55d009cb7b6aa80d58978e9c464 (diff) | |
download | build_control-2a82bf09f1ad4df41a6ade5c8ecf852e15802aad.tar.gz |
Have curl follow redirects (#75)1.0.34
Conda started serving the macos installer using a redirect. This allows retrieval.
-rw-r--r-- | jenkins/dispatch.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |