diff options
| author | grubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2021-07-07 11:37:56 +0000 |
|---|---|---|
| committer | grubert <grubert@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2021-07-07 11:37:56 +0000 |
| commit | 206dc0cab04637510818bb1478df6e18dcd6e3ef (patch) | |
| tree | 267c5e3f01fd311320001be1d817e7fbe5e87937 /sandbox/infrastructure/docutils-update.local | |
| parent | 365fbc30e771c1428ebdbb64133b3d8faf68e486 (diff) | |
| download | docutils-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-x | sandbox/infrastructure/docutils-update.local | 4 |
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 |
