]> granicus.if.org Git - postgresql/commitdiff
Fix copyright.pl to properly skip the .git directory by adding a
authorBruce Momjian <bruce@momjian.us>
Fri, 6 Jul 2012 15:43:59 +0000 (11:43 -0400)
committerBruce Momjian <bruce@momjian.us>
Fri, 6 Jul 2012 15:43:59 +0000 (11:43 -0400)
basename() qualification.

src/tools/copyright.pl

index 26343af97de77cf6118d4055e611be932cb1553b..c78f20e119e3c92503afeebd61c47ef7d60c4ba0 100755 (executable)
@@ -11,6 +11,7 @@ use strict;
 use warnings;
 
 use File::Find;
+use File::Basename;
 use Tie::File;
 
 my $pgdg = 'PostgreSQL Global Development Group';
@@ -25,15 +26,14 @@ find({ wanted => \&wanted, no_chdir => 1 }, '.');
 
 sub wanted
 {
-
        # prevent corruption of git indexes by ignoring any .git/
-       if ($_ eq '.git')
+       if (basename($_) eq '.git')
        {
                $File::Find::prune = 1;
                return;
        }
 
-       return if !-f $File::Find::name || -l $File::Find::name;
+       return if ! -f $File::Find::name || -l $File::Find::name;
 
        # skip file names with binary extensions
        # How are these updated?  bjm 2012-01-02