Skip to content
Snippets Groups Projects
Commit 4dc4ebe0 authored by Felix Fietkau's avatar Felix Fietkau
Browse files

scripts/download.pl: fix sourceforge url

SVN-Revision: 30726
parent fe66f30a
No related branches found
No related tags found
No related merge requests found
......@@ -123,7 +123,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, "http://downloads.sourceforge.net/project/$1";
}
} elsif ($mirror =~ /^\@GNU\/(.+)$/) {
push @mirrors, "ftp://ftp.gnu.org/gnu/$1";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment