From 485f798e7a7f1fe4bbea39083100ea2c8b34d0a6 Mon Sep 17 00:00:00 2001 From: Ryan Foster Date: Sat, 18 Aug 2018 02:26:22 -0400 Subject: [PATCH] CI: Use HTTPS for downloading macOS deps package Pull Request #1420 changed the URL for the macOS deps package. When it did that, it also changed the URL from HTTPS to HTTP. Since this asset is available over HTTPS, we should use that. --- CI/install-dependencies-osx.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CI/install-dependencies-osx.sh b/CI/install-dependencies-osx.sh index 293a3258e..d67a226a9 100755 --- a/CI/install-dependencies-osx.sh +++ b/CI/install-dependencies-osx.sh @@ -31,7 +31,7 @@ ccache -s || echo "CCache is not available." # Fetch and untar prebuilt OBS deps that are compatible with older versions of OSX hr "Downloading OBS deps" -wget --quiet --retry-connrefused --waitretry=1 http://obs-nightly.s3.amazonaws.com/osx-deps-2018-08-09.tar.gz +wget --quiet --retry-connrefused --waitretry=1 https://obs-nightly.s3.amazonaws.com/osx-deps-2018-08-09.tar.gz tar -xf ./osx-deps-2018-08-09.tar.gz -C /tmp # Fetch vlc codebase