diff options
-rw-r--r-- | Porting/manicheck | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Porting/manicheck b/Porting/manicheck index 9fff8613b3..26209438aa 100644 --- a/Porting/manicheck +++ b/Porting/manicheck @@ -19,8 +19,8 @@ find { wanted => sub { my $x = $File::Find::name; $x =~ s/^..//; return if -d; - return if $_ eq '.gitignore'; - return if $x =~ /^\.git\b/; + return if $_ eq '.gitignore'; + return if $x =~ /^\.git\b/; print "$File::Find::name not in MANIFEST\n" if !$files{$x}; }, }, "."; |