Prevent lint failures for web sites that are timing out. (#5210)

This commit is contained in:
Martin Taillefer 2019-10-20 19:37:36 -07:00 committed by Istio Automation
parent e8f8b4feb8
commit c2d0793f3f
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ find ./public -type f -name '*.html' -print0 | while IFS= read -r -d '' f; do
fi
done
if ! htmlproofer ./public --assume-extension --check-html --check-external-hash --check-opengraph --timeframe 2d --storage-dir .htmlproofer --url-ignore "/localhost/,/github.com/istio/istio.io/edit/,/github.com/istio/istio/issues/new/choose/,/groups.google.com/forum/,/www.trulia.com/,/apporbit.com/,/www.mysql.com/"; then
if ! htmlproofer ./public --assume-extension --http-status-ignore "0" --check-html --check-external-hash --check-opengraph --timeframe 2d --storage-dir .htmlproofer --url-ignore "/localhost/,/github.com/istio/istio.io/edit/,/github.com/istio/istio/issues/new/choose/,/groups.google.com/forum/,/www.trulia.com/,/apporbit.com/,/www.mysql.com/"; then
FAILED=1
fi