Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ if [[ "$GITHUB_ACTIONS" == "true" ]]; then
readarray -d '' TARGETS < <(find whatwg.org -maxdepth 1 -type f ! -name "*.*" ! -name "status-2008-12" -print0)
TARGETS+=(whatwg.org/news whatwg.org/validator whatwg.org/index.html idea.whatwg.org/index.html spec.whatwg.org/index.html)

curl --retry 2 --fail --remote-name --location https://github.com/validator/validator/releases/download/latest/vnu.linux.zip
curl --retry 2 --fail --remote-name --location https://github.com/validator/validator/releases/latest/download/vnu.linux.zip
unzip -qq vnu.linux.zip
# shellcheck disable=SC1111
FILTER_PATTERN=".*Illegal character in fragment: “#” is not allowed.*"
Expand Down
2 changes: 1 addition & 1 deletion resources.whatwg.org/build/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ echo ""
# Run the HTML checker only in CI
if [[ "$GITHUB_ACTIONS" == "true" ]]; then
header "Running the HTML checker..."
curlretry --fail --remote-name --location https://github.com/validator/validator/releases/download/latest/vnu.linux.zip
curlretry --fail --remote-name --location https://github.com/validator/validator/releases/latest/download/vnu.linux.zip
unzip -q vnu.linux.zip
if [ -f .htmlcheckerfilter ]; then
./vnu-runtime-image/bin/vnu --verbose --skip-non-html --Werror --filterfile .htmlcheckerfilter "$WEB_ROOT"
Expand Down
Loading