aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-12-09 11:31:11 +0000
committerGravatar Sadie Powell2022-12-09 11:31:11 +0000
commit3e941f1cfbae54c83dd7558a3fea89cf80940605 (patch)
tree03b2c1f22e63d3732a3b724c14e687929fd761f4 /tools
parentMore const correctness work. (diff)
parentFix reading the MOTD when <connect:motd> is a literal path. (diff)
Merge branch 'insp3' into master.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/mkauthors2
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";
}