diff options
author | Matt Rendina <rendinam@users.noreply.github.com> | 2020-04-20 08:29:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-20 08:29:18 -0400 |
commit | a9d8093bc307f23c3f3ad4e088fb66c171fefc73 (patch) | |
tree | 1a493f8cb24d5cbd926bb06ccb038cba6890c159 | |
parent | dc3b55c64c126363f9c12440ca45b6d944053db4 (diff) | |
parent | b26af2a295a4b3fdded2c1a9bacffe6020305127 (diff) | |
download | shared_utils-a9d8093bc307f23c3f3ad4e088fb66c171fefc73.tar.gz |
Merge pull request #2 from astroconda/rendinam-patch-1
Tell curl to follow redirects
-rw-r--r-- | vars/conda.groovy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vars/conda.groovy b/vars/conda.groovy index 7bb274f..009ece8 100644 --- a/vars/conda.groovy +++ b/vars/conda.groovy @@ -21,7 +21,7 @@ def install(version="4.3.31", py_maj_version=3, install_dir="miniconda") { // Check for the availability of a download tool and then use it // to get the conda installer. - def dl_cmds = ["curl -OSs", + def dl_cmds = ["curl -LOSs", "wget --no-verbose --server-response --no-check-certificate"] def dl_cmd = null def stat1 = 999 |