From: Fred Drake Date: Tue, 16 Feb 1999 20:05:43 +0000 (+0000) Subject: Make sure errors get propogated. X-Git-Tag: v1.5.2b2~34 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f43ce00531bbafb1d2eaafd0fa128a1131822320;p=python Make sure errors get propogated. --- 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 $?