ignore empty lines in scripts/localmirrors

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27416 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
John Crispin 2011-07-03 19:33:24 +00:00
parent 273222c78a
commit 2e3b0f7f91
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ sub localmirrors {
open LM, "$scriptdir/localmirrors" and do {
while (<LM>) {
chomp $_;
push @mlist, $_;
push @mlist, $_ if $_;
}
close LM;
};