From ecbc27e4b5cc2b9aef1a447a2e437ee0312d1e2f Mon Sep 17 00:00:00 2001 From: zeme Date: Mon, 24 Jun 2024 19:44:21 +0200 Subject: [PATCH] wip --- scripts/check-broken-links.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/check-broken-links.sh b/scripts/check-broken-links.sh index fb988abdd1f..55787ef2ad9 100755 --- a/scripts/check-broken-links.sh +++ b/scripts/check-broken-links.sh @@ -18,8 +18,7 @@ for file in "${TARGETS[@]}"; do echo "Checking ${file}" grep -oE "\b(https?://|www\.)[^\[\(\)\"]+\b" "${file}" \ | linkchecker --no-warnings --recursion-level 0 --output failures --check-extern --stdin \ - # For some reason linkchecker fails to check this URL though it is valid - --ignore-url https://img.shields.io/matrix/plutus-core%3Amatrix.org + --ignore-url https://img.shields.io/matrix/plutus-core%3Amatrix.org # For some reason linkchecker fails to check this URL though it is valid if [ $? -ne 0 ]; then echo "${file} has broken links, see output above" FAILED=1