From: Bruce Momjian Date: Tue, 14 Jan 2020 15:51:58 +0000 (-0500) Subject: tools/copyright.pl: skip copyright changes for *.key files X-Git-Tag: REL_13_BETA1~873 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=7316f11be03863858fa7acb5eee97ec35c91fca4;p=postgresql.git tools/copyright.pl: skip copyright changes for *.key files Reported-by: Alvaro Herrera Discussion: https://postgr.es/m/20200102184059.GA25435@alvherre.pgsql Backpatch-through: master --- diff --git a/src/tools/copyright.pl b/src/tools/copyright.pl index 188ac1fc763..bd9f89d6ab3 100755 --- a/src/tools/copyright.pl +++ b/src/tools/copyright.pl @@ -41,7 +41,7 @@ sub wanted # skip file names with binary extensions # How are these updated? bjm 2012-01-02 - return if ($_ =~ m/\.(ico|bin|po)$/); + return if ($_ =~ m/\.(ico|bin|po|key)$/); my @lines; tie @lines, "Tie::File", $File::Find::name;