From 8fa26c9b064b81a366bddf1b67a474340aa8bdfd Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Wed, 6 Apr 2016 22:37:56 -0400 Subject: [PATCH] travis template: Use `curl` (no `wget` on Mac by default). --- conda_smithy/templates/travis.yml.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda_smithy/templates/travis.yml.tmpl b/conda_smithy/templates/travis.yml.tmpl index 674477eab..f6bd10cae 100644 --- a/conda_smithy/templates/travis.yml.tmpl +++ b/conda_smithy/templates/travis.yml.tmpl @@ -34,7 +34,7 @@ install: - | MINICONDA_URL="http://repo.continuum.io/miniconda" MINICONDA_FILE="Miniconda3-latest-MacOSX-x86_64.sh" - wget "${MINICONDA_URL}/${MINICONDA_FILE}" + curl -O "${MINICONDA_URL}/${MINICONDA_FILE}" bash $MINICONDA_FILE -b export PATH=/Users/travis/miniconda3/bin:$PATH