mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Fix mkauthors mishandling coauthor tags with periods at the end.
This commit is contained in:
parent
816af8c8cf
commit
ddbe4574f4
@ -35,6 +35,7 @@ for my $author (split /\n+/, `git log --pretty='%aN <%aE>%n%(trailers:key=Co-Aut
|
||||
$author = $1 if $author =~ /^(.+) <(?:unknown\@email.invalid|\S+\@users.noreply.github.com)>$/;
|
||||
next if $author =~ /\[bot\]$/;
|
||||
|
||||
$author =~ s/\.$//g;
|
||||
$authors{$author} ||= 0;
|
||||
$authors{$author} += 1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user