From f495c4846d22efb9b28e4f8a177bbfb98fe081cf Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Tue, 28 Jul 2020 18:55:16 -0400 Subject: [PATCH] updatelang: Fix the ignore list having issues with line endings. Change-Id: Ib4add14ff7415c42d0cc2ec11ec918ec02fac72d --- tools/updatelang | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/updatelang b/tools/updatelang index 5072ed6a07..62e7c327b6 100755 --- a/tools/updatelang +++ b/tools/updatelang @@ -148,6 +148,7 @@ close (FH); sub not_ignorelist { my ($key) = @_; foreach (@ignorelist) { + chomp; if ($_ eq $key) { return 0; }