Skip to content

Commit

Permalink
managen: fix the option sort order
Browse files Browse the repository at this point in the history
... it used to strip off the .d file extension to sort correctly but
ever since the extension changed to .md the operation failed and the
sort got wrong.

Follow-up to 2494b8d

Closes #13567
  • Loading branch information
bagder committed May 9, 2024
1 parent e1cf21b commit a95fd86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/managen
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ sub listglobals {

sub noext {
my $in = $_[0];
$in =~ s/\.d//;
$in =~ s/\.md//;
return $in;
}

Expand Down

0 comments on commit a95fd86

Please sign in to comment.