1
0
mirror of https://github.com/bitcoin/bips.git synced 2026-03-23 16:05:41 +00:00

CI: improve date validation regex in buildtable.pl

and quote filename variable in link format checker script

Co-authored-by: bigbear <155267841+aso20455@users.noreply.github.com>
Co-authored-by: Jon Atack <jon@atack.com>
This commit is contained in:
viktorking7
2025-10-03 18:13:15 +02:00
committed by Jon Atack
parent 6340cecfbc
commit 664d376c8a
2 changed files with 3 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
ECODE=0
for fname in *.mediawiki; do
GRES=$(grep -n '](http' $fname)
GRES=$(grep -n '](http' "$fname")
if [ "$GRES" != "" ]; then
if [ $ECODE -eq 0 ]; then
>&2 echo "Github Mediawiki format writes link as [URL text], not as [text](url):"