diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-08-18 12:25:44 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-08-18 12:25:44 +0000 |
commit | 265c60bb9f997756d5fafd1f8d5a17f6ed4c4497 (patch) | |
tree | d421d1fc47294c031529c5a5cbe5fa620e111517 | |
parent | daf6512a893fa61c9b8d4b8dc93c46e2a94e7f42 (diff) | |
download | fetchmail-265c60bb9f997756d5fafd1f8d5a17f6ed4c4497.tar.gz fetchmail-265c60bb9f997756d5fafd1f8d5a17f6ed4c4497.tar.bz2 fetchmail-265c60bb9f997756d5fafd1f8d5a17f6ed4c4497.zip |
Ignore fetchmail-man.html; it's not XHTML.
svn path=/branches/BRANCH_6-3/; revision=5421
-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 |