diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-28 18:55:16 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-28 18:55:16 -0400 |
commit | f495c4846d22efb9b28e4f8a177bbfb98fe081cf (patch) | |
tree | 86e34989dcb431d9d36b27e476947cac29062261 /tools | |
parent | e3f6e9d9f6e14727740e28bf30914cea1d07ff39 (diff) |
updatelang: Fix the ignore list having issues with line endings.
Change-Id: Ib4add14ff7415c42d0cc2ec11ec918ec02fac72d
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/updatelang | 1 |
1 files changed, 1 insertions, 0 deletions
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; } |