From f43ce00531bbafb1d2eaafd0fa128a1131822320 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Tue, 16 Feb 1999 20:05:43 +0000 Subject: [PATCH] Make sure errors get propogated. --- Doc/tools/mkhtml.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Doc/tools/mkhtml.sh b/Doc/tools/mkhtml.sh index adeaec82ed..940d934160 100755 --- a/Doc/tools/mkhtml.sh +++ b/Doc/tools/mkhtml.sh @@ -2,7 +2,8 @@ # # Drive HTML generation for a Python manual. # -# This is probably *not* useful outside of the standard Python documentation. +# This is probably *not* useful outside of the standard Python documentation, +# but suggestions are welcome and should be sent to . # # The first arg is required and is the designation for which manual to build; # api, ext, lib, ref, or tut. All other args are passed on to latex2html. @@ -28,8 +29,8 @@ latex2html \ -address '
Send comments to python-docs@python.org.' \ -dir $part \ ${1:+$@} \ - $srcdir/$part/$part.tex + $srcdir/$part/$part.tex || exit $? -echo '(cd '$part'; '$srcdir'/tools/node2label.pl *.html)' +echo "(cd $part; $srcdir/tools/node2label.pl \*.html)" cd $part -$srcdir/tools/node2label.pl *.html +$srcdir/tools/node2label.pl *.html || exit $? -- 2.40.0