ignore empty lines in scripts/localmirrors

SVN-Revision: 27416
This commit is contained in:
John Crispin 2011-07-03 19:33:24 +00:00
parent cd8166f3fd
commit 4d8b9fafcb
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;
};