From 2b6cf630c5ff144631fb0729f4f8c4e5dce45206 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Mon, 24 Oct 2016 17:20:16 -0400 Subject: [PATCH] Use HTTPS connections in Travis. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index bf6540cc..40e4f20e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,8 @@ env: - LD_LIBRARY_PATH: /usr/local/lib install: - cd .. - - time wget -q http://www.libsdl.org/release/SDL2-2.0.3.tar.gz - - time wget -q http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.0.tar.gz + - time wget -q https://www.libsdl.org/release/SDL2-2.0.3.tar.gz + - time wget -q https://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.0.tar.gz - time tar xf SDL2-*.tar.gz - time tar xf SDL2_mixer-*.tar.gz - cd SDL2-* @@ -25,4 +25,4 @@ script: - cargo doc -v after_script: - cp -R target/doc doc - - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh + - curl https://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh