[Python-checkins] CVS: python/dist/src/Doc/tools update-docs.sh,1.3,1.4

Fred L. Drake fdrake@users.sourceforge.net
Wed, 14 Feb 2001 13:26:33 -0800


Update of /cvsroot/python/python/dist/src/Doc/tools
In directory usw-pr-cvs1:/tmp/cvs-serv6010/tools

Modified Files:
	update-docs.sh 
Log Message:

Be more careful to avoid spurious output from the shell script that
unpacks the development version of the docs on SF.


Index: update-docs.sh
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tools/update-docs.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** update-docs.sh	2000/11/30 07:38:59	1.3
--- update-docs.sh	2001/02/14 21:26:31	1.4
***************
*** 22,26 ****
      (bzip2 -dc "$UPDATES" | tar xf -) || exit $?
      rm "$UPDATES" || exit $?
!     EXPLANATION="`cat $INFO`"
      Mail -s '[development doc updates]' \
       python-dev@python.org doc-sig@python.org \
--- 22,30 ----
      (bzip2 -dc "$UPDATES" | tar xf -) || exit $?
      rm "$UPDATES" || exit $?
!     if [ -f "$INFO" ] ; then
!         EXPLANATION="`cat $INFO`"
!     else
!         EXPLANATION=''
!     fi
      Mail -s '[development doc updates]' \
       python-dev@python.org doc-sig@python.org \