Merge pull request #203 from gcarq/travis/fix-ssl

use curl instead of wget (see travis-ci/issues/5059)
This commit is contained in:
Janne Sinivirta 2017-12-18 11:09:50 +02:00 committed by GitHub
commit 1a556198b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,5 @@
if [ ! -f "ta-lib/CHANGELOG.TXT" ]; then
wget http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
curl -O http://prdownloads.sourceforge.net/ta-lib/ta-lib-0.4.0-src.tar.gz
tar zxvf ta-lib-0.4.0-src.tar.gz
cd ta-lib && ./configure && make && sudo make install && cd ..
else