[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: * tp/maintain/check_epubcheck_texi_t.sh: sort fir
From: |
Patrice Dumas |
Subject: |
branch master updated: * tp/maintain/check_epubcheck_texi_t.sh: sort first level directories. |
Date: |
Sun, 08 Sep 2024 12:43:56 -0400 |
This is an automated email from the git hooks/post-receive script.
pertusus pushed a commit to branch master
in repository texinfo.
The following commit(s) were added to refs/heads/master by this push:
new f02b13e024 * tp/maintain/check_epubcheck_texi_t.sh: sort first level
directories.
f02b13e024 is described below
commit f02b13e024d4f150e6bef185e364983f679f7d97
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Sun Sep 8 18:43:54 2024 +0200
* tp/maintain/check_epubcheck_texi_t.sh: sort first level directories.
---
ChangeLog | 4 ++++
tp/maintain/check_epubcheck_texi_t.sh | 4 +++-
2 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index 39dc2c6e26..55a816aa11 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2024-09-08 Patrice Dumas <pertusus@free.fr>
+
+ * tp/maintain/check_epubcheck_texi_t.sh: sort first level directories.
+
2024-09-08 Patrice Dumas <pertusus@free.fr>
* tp/t/epub_tests.t, tp/Makefile.tres, tp/t/html_tests.t: new
diff --git a/tp/maintain/check_epubcheck_texi_t.sh
b/tp/maintain/check_epubcheck_texi_t.sh
index 60ca859410..65a88ea805 100755
--- a/tp/maintain/check_epubcheck_texi_t.sh
+++ b/tp/maintain/check_epubcheck_texi_t.sh
@@ -61,7 +61,7 @@ else
fi
mkdir -p $mdir/epubcheck_logs
-for dir in `find t_texis/ -type d` ; do
+for dir in `find t_texis/ -type d | sort` ; do
bdir=`echo $dir | sed 's;t_texis/;;'`
if test z"$bdir" = 'z' ; then
# for the t_texis/ directory
@@ -85,6 +85,8 @@ for dir in `find t_texis/ -type d` ; do
continue
fi
echo " -> $file: EPUB"
+ # we set NO_TOP_NODE_OUTPUT=0 to avoid false positives for missing anchors
+ # in particular, although it would have been nice not to need that
cmd="${srcdir}/texi2any.pl --epub --force --error=100000 -o
$mdir/epubcheck_EPUB/$bdir/$bfile.epub -c
SUBDIR=$mdir/epubcheck_package/$bdir/${bfile}_epub_package -c EPUB_STRICT=1 -c
EPUB_KEEP_CONTAINER_FOLDER=1 -c NO_TOP_NODE_OUTPUT=0 -c SHOW_TITLE=1 $file"
echo $cmd
$cmd
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: * tp/maintain/check_epubcheck_texi_t.sh: sort first level directories.,
Patrice Dumas <=