Skip to content

Commit 69cb4df

Browse files
committed
check-build-and-verify.sh: suppress "Picked up _JAVA_OPTIONS" warning from html5validator.
Workaround for svenkreiss/html5validator#34 Fix #634
1 parent 594e9ec commit 69cb4df

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/scripts/ci/check-build-and-verify.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,7 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
155155
# FIXME: add check for src/main/config/nginx/503.*html
156156
# TODO: remove ignoring of error about alt attribute after resolving #314
157157
# TODO: remove ignoring of error about document language when it will be resolved in upstream
158+
# TODO: remove ignoring of error about Picked up _JAVA_OPTIONS when it will be resolved in upstream
158159
html5validator \
159160
--root src/main/webapp/WEB-INF/views \
160161
--ignore-re 'Attribute “(th|sec|togglz|xmlns):[a-z]+” not allowed' \
@@ -163,6 +164,7 @@ if [ "$RUN_ONLY_INTEGRATION_TESTS" = 'no' ]; then
163164
'An "img" element must have an "alt" attribute' \
164165
'The first child "option" element of a "select" element with a "required" attribute' \
165166
'This document appears to be written in (Danish|Lithuanian)' \
167+
'Picked up' \
166168
--show-warnings \
167169
>validator.log 2>&1 || HTML_STATUS=fail
168170
fi

0 commit comments

Comments
 (0)