From: Rosen Penev Date: Tue, 20 Feb 2018 20:43:00 +0000 (-0800) Subject: download.pl: Change SourceForge address to HTTPS. X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=9ea90209f9ef3a786b34995092e830c50a65ddfd;p=openwrt%2Fstaging%2Frmilecki.git download.pl: Change SourceForge address to HTTPS. SourceForge has supported HTTPS for its downloads for a long time now. I have not been able to see any failures resulting from this change. Signed-off-by: Rosen Penev --- diff --git a/scripts/download.pl b/scripts/download.pl index f5c3f71056d..324cfdb3b31 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -191,7 +191,7 @@ foreach my $mirror (@ARGV) { if ($mirror =~ /^\@SF\/(.+)$/) { # give sourceforge a few more tries, because it redirects to different mirrors for (1 .. 5) { - push @mirrors, "http://downloads.sourceforge.net/$1"; + push @mirrors, "https://downloads.sourceforge.net/$1"; } } elsif ($mirror =~ /^\@APACHE\/(.+)$/) { push @mirrors, "https://mirror.netcologne.de/apache.org/$1";