ignore empty lines in scripts/localmirrors
SVN-Revision: 27416
This commit is contained in:
parent
cd8166f3fd
commit
4d8b9fafcb
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ sub localmirrors {
|
||||||
open LM, "$scriptdir/localmirrors" and do {
|
open LM, "$scriptdir/localmirrors" and do {
|
||||||
while (<LM>) {
|
while (<LM>) {
|
||||||
chomp $_;
|
chomp $_;
|
||||||
push @mlist, $_;
|
push @mlist, $_ if $_;
|
||||||
}
|
}
|
||||||
close LM;
|
close LM;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue