diff options
-rwxr-xr-x | t.validate-xhtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/t.validate-xhtml b/t.validate-xhtml index e3271988..d66fc98f 100755 --- a/t.validate-xhtml +++ b/t.validate-xhtml @@ -2,11 +2,12 @@ # This test script validates all *.html files as XHTML. -set -e +set -eu e=0 fail= IFS=$(printf '\n\t') for i in "${srcdir}"/*.html ; do + case "$i" in */fetchmail-man.html) continue ;; esac xmllint --postvalid --noout "$i" || { e=1 ; fail="$i${fail:+" "}$fail" ; } done if [ $e != 0 ] ; then |