From b29b3c47f6946a49a52115e1c6ee87910d9d1431 Mon Sep 17 00:00:00 2001 From: Vaughn Dice Date: Thu, 27 Mar 2025 15:19:20 -0600 Subject: [PATCH] fix(.build): re-add localhost:16686 to exemptions Signed-off-by: Vaughn Dice --- .build/check-broken-links.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.build/check-broken-links.sh b/.build/check-broken-links.sh index a70a67e4..1030befd 100755 --- a/.build/check-broken-links.sh +++ b/.build/check-broken-links.sh @@ -83,6 +83,7 @@ blc --recursive http://127.0.0.1:3000 --exclude 'https://crates.io/crates/bytes' \ --exclude 'https://crates.io/crates/http' \ --exclude 'https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one' \ + --exclude 'http://localhost:16686/' \ --exclude 'http://localhost:5050/explore' | tee "${report}" || blc_error=true cat "${report}" | grep "├─BROKEN─" > broken_links || true