From 13684216f28f31aee9f4ba0466028a9264e64c91 Mon Sep 17 00:00:00 2001 From: Dennis Schubert Date: Sun, 19 Jun 2016 13:42:04 +0200 Subject: [PATCH] Download PhantomJS over http since Travis' wget has no clue what SNI is who needs security anyway, right? --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2ff20b5c1..67aad469f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,7 @@ branches: before_install: - gem install bundler - mkdir travis-phantomjs - - wget https://cifiles.diasporafoundation.org/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 + - wget http://cifiles.diasporafoundation.org/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 - tar -xvf $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 -C $PWD/travis-phantomjs - export PATH=$PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64/bin:$PATH -- GitLab