Skip to content

Commit 5c70042

Browse files
committed
rc/mkindex: fix the sorting
1 parent 63ed112 commit 5c70042

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rc/mkindex.pl

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ sub filetime {
4848
MOO
4949
;
5050

51-
for my $f (sort { $sort {$a} <= $sort {$b}} @rc) {
51+
for my $f (sort { $sort {$b} <=> $sort {$a}} @rc) {
5252
my $when = filetime("$f");
5353
my $d = strftime "%Y-%m-%d", gmtime($when);
5454
my $gpg;

0 commit comments

Comments
 (0)