Skip to content

Commit

Permalink
dl/mktable: sort the OS list case-insensitively
Browse files Browse the repository at this point in the history
  • Loading branch information
dfandrich committed Nov 1, 2023
1 parent ee9d605 commit 9fe55a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dl/mktable.pl
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ sub show {

print "<div class=\"oslinks\">\n";
my $p=0;
for(sort keys %os) {
for(sort { lc($a) cmp lc($b) } keys %os) {
if($_ ne "-") {
if($p) {
print "<br>\n";
Expand Down

0 comments on commit 9fe55a1

Please sign in to comment.