From 035c985d3b25a315abb45e12b67c790175eaafed Mon Sep 17 00:00:00 2001 From: RISCi_ATOM Date: Thu, 7 Jun 2018 19:01:50 -0400 Subject: [PATCH] Remove GitHub from download.pl and add libreCMC's GNU mirror Note: Not all ref. have been removed from the project. --- scripts/download.pl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/scripts/download.pl b/scripts/download.pl index dfb46e1ae9..93e275992f 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -194,12 +194,8 @@ foreach my $mirror (@ARGV) { } elsif ($mirror =~ /^\@APACHE\/(.+)$/) { push @mirrors, "https://mirror.netcologne.de/apache.org/$1"; push @mirrors, "https://mirror.aarnet.edu.au/pub/apache/$1"; - } elsif ($mirror =~ /^\@GITHUB\/(.+)$/) { - # give github a few more tries (different mirrors) - for (1 .. 5) { - push @mirrors, "https://raw.githubusercontent.com/$1"; - } } elsif ($mirror =~ /^\@GNU\/(.+)$/) { + push @mirrors, "https://librecmc.org/pub/gnu/$1"; push @mirrors, "https://mirrors.rit.edu/gnu/$1"; push @mirrors, "https://mirror.netcologne.de/gnu/$1"; } elsif ($mirror =~ /^\@SAVANNAH\/(.+)$/) { -- 2.25.1