We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a831646 commit 542b763Copy full SHA for 542b763
scripts/check-broken-links.sh
@@ -22,7 +22,7 @@ check_links() {
22
23
grep_links() {
24
for file in $(find "${TARGETS[@]}"); do
25
- grep -oE "\b(https?://|www\.)[^\[\(\)\"]+\b" "${file}"
+ grep -oE "\b(https?://|www\.)[^\[\(\)\"\ ]+\b" "${file}"
26
done
27
}
28
@@ -32,7 +32,8 @@ valid_links() {
32
comm -3 <(echo "$all_links") <(echo "$ignore_links")
33
34
35
-check_links <<< "$(valid_links)"
+valid_links
36
+# check_links <<< "$(valid_links)"
37
38
if [[ "$?" != "0" ]]; then
39
echo "Found broken links, see output above"
0 commit comments