Closed saimidu closed 4 years ago
Description of changes: The line
curl -o ~/miniconda.sh -O https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
doesn't work anymore after a change in the way the file is hosted at that URL around April 07, 2020.
Therefore this curl command has been replaced with
curl -L -o ~/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
with curl -L to allow the link to be redirected to the actual download link.
curl -L
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository
Description of changes: The line
doesn't work anymore after a change in the way the file is hosted at that URL around April 07, 2020.
Therefore this curl command has been replaced with
with
curl -L
to allow the link to be redirected to the actual download link.By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.