Skip to content

Commit 2250c74

Browse files
fix(ci): simplify htmlproofer command to use committed config
1 parent b787223 commit 2250c74

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tools/test.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ main() {
6161
-d "$SITE_DIR$_baseurl" -c "$_config"
6262

6363
# test
64-
bundle exec htmlproofer "$SITE_DIR" \
65-
--disable-external \
66-
--ignore-urls "/^http:\/\/127.0.0.1/,/^http:\/\/0.0.0.0/,/^http:\/\/localhost/"
64+
# CORRECTED: Removing explicit flags to force HTMLProofer to use the
65+
# .htmlproofer.yml file for configuration (which contains disable_external: true).
66+
bundle exec htmlproofer "$SITE_DIR"
6767
}
6868

6969
while (($#)); do
@@ -86,4 +86,4 @@ while (($#)); do
8686
esac
8787
done
8888

89-
main
89+
main

0 commit comments

Comments
 (0)