From 109c352308e3c4116e064af22b4e90c6c274023a Mon Sep 17 00:00:00 2001 From: Kernc Date: Sun, 27 Nov 2022 06:14:39 +0100 Subject: [PATCH] BUG: Fix docs build broken link check bug --- doc/build.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/doc/build.sh b/doc/build.sh index 981e9ffa..f9e86445 100755 --- a/doc/build.sh +++ b/doc/build.sh @@ -78,6 +78,7 @@ grep -PR '(cat 1>&2) | python -c ' import sys from urllib.parse import urljoin @@ -90,9 +91,14 @@ for line in sys.stdin.readlines(): grep -v $'\t''$' | while read -r line; do while IFS=$'\t' read -r file url; do - url=$(python -c 'import html, sys; print(html.unescape(sys.argv[-1]))' "$url") - [ -f "$url" ] || - curl --silent --fail --retry 5 --retry-delay 5 --user-agent 'Mozilla/5.0 Firefox 61' "$url" >/dev/null 2>&1 || + target_file="$(python -c ' +import html, sys # fixes & +from urllib.parse import unquote # fixes %20 +print(html.unescape(unquote(sys.argv[-1])))' "$url")" + if [ -f "$target_file" ]; then continue; fi + + url="${url// /%20}" + curl --silent --fail --retry 5 --retry-delay 5 --user-agent 'Mozilla/5.0 Firefox 101' "$url" >/dev/null 2>&1 || die "broken link in $file: $url" done done