diff options
| author | 2022-12-09 11:31:11 +0000 | |
|---|---|---|
| committer | 2022-12-09 11:31:11 +0000 | |
| commit | 3e941f1cfbae54c83dd7558a3fea89cf80940605 (patch) | |
| tree | 03b2c1f22e63d3732a3b724c14e687929fd761f4 /tools | |
| parent | More const correctness work. (diff) | |
| parent | Fix reading the MOTD when <connect:motd> is a literal path. (diff) | |
Merge branch 'insp3' into master.
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"; } |
