Skip to content
This repository was archived by the owner on Nov 13, 2020. It is now read-only.

Commit c7b0daf

Browse files
authored
Fix failing HTTP download
Seems like `repo.continuum.io` requires HTTPS now.
1 parent ded8f22 commit c7b0daf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/steps/conda_compile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
if [ ! -d /app/.heroku/miniconda ]; then
22
puts-step "Preparing Python/Miniconda Environment"
3-
curl -Os http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
3+
curl -Os https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
44
bash Miniconda-latest-Linux-x86_64.sh -p /app/.heroku/miniconda/ -b | indent
55
rm -fr Miniconda-latest-Linux-x86_64.sh
66

0 commit comments

Comments
 (0)