aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2009-08-18 12:25:44 +0000
committerMatthias Andree <matthias.andree@gmx.de>2009-08-18 12:25:44 +0000
commit265c60bb9f997756d5fafd1f8d5a17f6ed4c4497 (patch)
treed421d1fc47294c031529c5a5cbe5fa620e111517
parentdaf6512a893fa61c9b8d4b8dc93c46e2a94e7f42 (diff)
downloadfetchmail-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-xt.validate-xhtml3
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