From 265c60bb9f997756d5fafd1f8d5a17f6ed4c4497 Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 18 Aug 2009 12:25:44 +0000 Subject: Ignore fetchmail-man.html; it's not XHTML. svn path=/branches/BRANCH_6-3/; revision=5421 --- t.validate-xhtml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3