diff options
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/mkauthors | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mkauthors b/tools/mkauthors index 3c35d9b0e..66e9ac0c0 100755 --- a/tools/mkauthors +++ b/tools/mkauthors @@ -48,7 +48,7 @@ commits, and other useful contributions to InspIRCd. These people, ordered by the number of contributions they have made, are: EOH -for my $author (sort { $authors{$b} <=> $authors{$a} or $a cmp $b } keys %authors) { +for my $author (sort { $authors{$b} <=> $authors{$a} or lc($a) cmp lc($b) } keys %authors) { next if $author eq 'InspIRCd Robot <noreply@inspircd.org>'; say $fh " * $author"; } |
