Be more careful to avoid spurious output from the shell script that

unpacks the development version of the docs on SF.
This commit is contained in:
Fred Drake 2001-02-14 21:26:31 +00:00
parent 8bcc4e8446
commit e4f1c3276a

View file

@ -21,7 +21,11 @@ if [ -f "$UPDATES" ] ; then
cd devel-docs || exit $?
(bzip2 -dc "$UPDATES" | tar xf -) || exit $?
rm "$UPDATES" || exit $?
EXPLANATION="`cat $INFO`"
if [ -f "$INFO" ] ; then
EXPLANATION="`cat $INFO`"
else
EXPLANATION=''
fi
Mail -s '[development doc updates]' \
python-dev@python.org doc-sig@python.org \
<<EOF