From 0b1a210659026e166598c882517cd795b80ff72e Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Thu, 8 Dec 2022 13:36:57 +0000 Subject: Sort names case insensitively in the authors list. --- tools/mkauthors | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/mkauthors b/tools/mkauthors index 7f4f91dfd..113ef460b 100755 --- a/tools/mkauthors +++ b/tools/mkauthors @@ -47,7 +47,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 '; say $fh " * $author"; } -- cgit v1.3.1-10-gc9f91