1
0
Fork 0
forked from len0rd/rockbox

updatelang: Fix the ignore list having issues with line endings.

Change-Id: Ib4add14ff7415c42d0cc2ec11ec918ec02fac72d
This commit is contained in:
Solomon Peachy 2020-07-28 18:55:16 -04:00
parent e3f6e9d9f6
commit f495c4846d

View file

@ -148,6 +148,7 @@ close (FH);
sub not_ignorelist { sub not_ignorelist {
my ($key) = @_; my ($key) = @_;
foreach (@ignorelist) { foreach (@ignorelist) {
chomp;
if ($_ eq $key) { if ($_ eq $key) {
return 0; return 0;
} }