From 06c2f9fcfc89577c48d33dfc6882545713ad19f6 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 5 May 2025 23:56:12 -0400 Subject: [PATCH] wikiheaders: Correct wiki README digest links. --- build-scripts/wikiheaders.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-scripts/wikiheaders.pl b/build-scripts/wikiheaders.pl index fa9407ebca..e54c27bdd1 100755 --- a/build-scripts/wikiheaders.pl +++ b/build-scripts/wikiheaders.pl @@ -2707,8 +2707,8 @@ __EOF__ opendir(DH, $wikipath) or die("Can't opendir '$wikipath': $!\n"); while (my $d = readdir(DH)) { my $dent = $d; - if ($dent =~ /\AREADME\-.*?\.md\Z/) { - push @pages, $dent; + if ($dent =~ /\(AREADME\-.*?)\.md\Z/) { + push @pages, $1; } } closedir(DH);