scripts/download.pl: add support for adding mirrors through an environment variable

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 43654
lede-17.01
Felix Fietkau 2014-12-12 12:35:23 +00:00
parent 5472898c0c
commit 3d640eccc1
1 changed files with 3 additions and 0 deletions

View File

@ -40,6 +40,9 @@ sub localmirrors {
close CONFIG;
};
my $mirror = $ENV{'DOWNLOAD_MIRROR'};
$mirror and push @mlist, split(/;/, $mirror);
return @mlist;
}