Skip to content

Commit 1218f95

Browse files
committed
fix to allow .git-hub
1 parent 5e78797 commit 1218f95

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/...

+2-1
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,8 @@ sub _all_files {
677677
chomp($file);
678678
next unless $file =~ /^(?:\.|bin\/)/;
679679
next if $file =~ /(\.sw.|~)$/;
680-
next if $file =~ /\.git(|ignore|modules)\b\/?/;
680+
next if $file =~ /\.git\//;
681+
next if $file =~ /\.(git|gitignore|gitmodules)$/;
681682
next if $file =~ /^\.\.\.(Makefile|deps)/;
682683
if (! $all_files->{$file}) {
683684
$all_files->{$file} = $path;

0 commit comments

Comments
 (0)