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 5977e52 commit 46a670cCopy full SHA for 46a670c
1 file changed
scripts/cibuild
@@ -1,5 +1,11 @@
1
#!/usr/bin/env bash
2
set -e # halt script on error
3
4
+IGNORE_HREFS=$(ruby -e 'puts %w{
5
+ vimeo.com
6
+ micro-ros.github.io//blog
7
+ }.map{|h| "/#{h}/"}.join(",")'
8
+)
9
+
10
bundle exec jekyll build
-bundle exec htmlproofer --check_html --check-favicon --assume-extension --empty-alt-ignore --only-4xx ./_site
11
+bundle exec htmlproofer --check_html --check-favicon --assume-extension --empty-alt-ignore --only-4xx --url-ignore $IGNORE_HREFS $@ ./_site
0 commit comments