diff options
author | Rosen Penev <rosenp@gmail.com> | 2018-02-20 12:43:00 -0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-05-01 11:12:15 +0200 |
commit | 9ea90209f9ef3a786b34995092e830c50a65ddfd (patch) | |
tree | 764d963216b9479d04c5206c9760c607df83478f /scripts | |
parent | 56ae9f9b0b1583e02815f0e60bf232947c27c6cf (diff) | |
download | upstream-9ea90209f9ef3a786b34995092e830c50a65ddfd.tar.gz upstream-9ea90209f9ef3a786b34995092e830c50a65ddfd.tar.bz2 upstream-9ea90209f9ef3a786b34995092e830c50a65ddfd.zip |
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 <rosenp@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download.pl b/scripts/download.pl index f5c3f71056..324cfdb3b3 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"; |