diff options
Diffstat (limited to 'update-authors.pl')
-rwxr-xr-x | update-authors.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/update-authors.pl b/update-authors.pl index 683594e0..2756b58a 100755 --- a/update-authors.pl +++ b/update-authors.pl @@ -63,5 +63,9 @@ sub GetNewAuthors { my @A = GetCurrentAuthors; my @B = GetNewAuthors; +for (@B) { + s/<\d+\+(.+?)%users\.noreply\.github\.com>/<$1%users\.noreply\.github\.com>/; + s/<(.+?)%users\.noreply\.github\.com>/https:\/\/github.com\/$1/; +} my @merged = sort { $a cmp $b } keys %{{map {($_ => 1)} (@A, @B)}}; print join(';',@merged) . ';'; |