summaryrefslogtreecommitdiff
path: root/sandbox/infrastructure/docutils-update.local
diff options
context:
space:
mode:
authorgrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2021-07-07 11:37:56 +0000
committergrubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04>2021-07-07 11:37:56 +0000
commit206dc0cab04637510818bb1478df6e18dcd6e3ef (patch)
tree267c5e3f01fd311320001be1d817e7fbe5e87937 /sandbox/infrastructure/docutils-update.local
parent365fbc30e771c1428ebdbb64133b3d8faf68e486 (diff)
downloaddocutils-206dc0cab04637510818bb1478df6e18dcd6e3ef.tar.gz
FIX htdocs update script: do not try for test/functional/expected contents
git-svn-id: https://svn.code.sf.net/p/docutils/code/trunk@8791 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'sandbox/infrastructure/docutils-update.local')
-rwxr-xr-xsandbox/infrastructure/docutils-update.local4
1 files changed, 4 insertions, 0 deletions
diff --git a/sandbox/infrastructure/docutils-update.local b/sandbox/infrastructure/docutils-update.local
index 3379cac45..8b32733d9 100755
--- a/sandbox/infrastructure/docutils-update.local
+++ b/sandbox/infrastructure/docutils-update.local
@@ -232,9 +232,13 @@ cd $htdocsdest
for htmlfile in `find . -name '*.html'` ; do
dir=`dirname $htmlfile`
base=`basename $htmlfile .html`
+ # functional tests: reST in input htm in expected or output
if [ "$base" == "standalone_rst_html4strict" ] ; then
# breaks web update
print_feedback "skipped: $dir $base"
+ elif [ "$dir" == "./test/functional/expected" ] ; then
+ # breaks web update
+ print_feedback "skipped: $dir $base"
else
txtfile=$dir/$base.txt
if [ ! -e $txtfile ] ; then