]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
managen: fix the option sort order
authorDaniel Stenberg <daniel@haxx.se>
Wed, 8 May 2024 21:50:55 +0000 (23:50 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 9 May 2024 08:39:43 +0000 (10:39 +0200)
... 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

index 2c5423a6a91cbc7b1a26a0069d656e9599c82ebf..8f16783982b35bcaadfe4202a9e6ab73b64c0aa5 100755 (executable)
@@ -984,7 +984,7 @@ sub listglobals {
 
 sub noext {
     my $in = $_[0];
-    $in =~ s/\.d//;
+    $in =~ s/\.md//;
     return $in;
 }