From: Gert Doering Date: Tue, 24 Nov 2020 16:13:13 +0000 (+0100) Subject: Change travis build scripts to use https when fetching prerequisites. X-Git-Tag: v2.6_beta1~659 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d4069e41d3ba7178be30f78f1174f689dbdfa59;p=thirdparty%2Fopenvpn.git Change travis build scripts to use https when fetching prerequisites. Reported by "jub0bs" on hackerone.com (#1039504) Signed-off-by: Gert Doering Acked-by: Arne Schwabe Message-Id: <20201124161313.18831-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg21264.html Signed-off-by: Gert Doering --- diff --git a/.travis/build-deps.sh b/.travis/build-deps.sh index 08b93e7a2..61673441d 100755 --- a/.travis/build-deps.sh +++ b/.travis/build-deps.sh @@ -18,14 +18,14 @@ PREFIX="${PREFIX:-${HOME}/opt}" download_tap_windows () { if [ ! -f "download-cache/tap-windows-${TAP_WINDOWS_VERSION}.zip" ]; then wget -P download-cache/ \ - "http://build.openvpn.net/downloads/releases/tap-windows-${TAP_WINDOWS_VERSION}.zip" + "https://build.openvpn.net/downloads/releases/tap-windows-${TAP_WINDOWS_VERSION}.zip" fi } download_lzo () { if [ ! -f "download-cache/lzo-${LZO_VERSION}.tar.gz" ]; then wget -P download-cache/ \ - "http://www.oberhumer.com/opensource/lzo/download/lzo-${LZO_VERSION}.tar.gz" + "https://www.oberhumer.com/opensource/lzo/download/lzo-${LZO_VERSION}.tar.gz" fi }