Kaydet (Commit) e4f1c327 authored tarafından Fred Drake's avatar Fred Drake

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

unpacks the development version of the docs on SF.
üst 8bcc4e84
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment