Blame tests/test_validate_docs_xhtml.sh

Packit 371ed6
#/bin/sh -e
Packit 371ed6
Packit 371ed6
for x in $(find ${builddir}/docs/reference/html/ -name "*.html")
Packit 371ed6
do
Packit 371ed6
  # echo Validating $x
Packit 371ed6
  xmllint --noout $x || exit 1
Packit 371ed6
done