From a95fd864042cb70d7e2c3a9d0cb46154634ca6b1 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 8 May 2024 23:50:55 +0200 Subject: [PATCH] managen: fix the option sort order ... 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 2494b8dd5175cee7f2e Closes #13567 --- scripts/managen | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/managen b/scripts/managen index 2c5423a6a9..8f16783982 100755 --- a/scripts/managen +++ b/scripts/managen @@ -984,7 +984,7 @@ sub listglobals { sub noext { my $in = $_[0]; - $in =~ s/\.d//; + $in =~ s/\.md//; return $in; }