mirror of
https://github.com/python/cpython.git
synced 2025-08-03 00:23:06 +00:00
Adjust to allow an explanation of the changes to be included in the
notification message.
This commit is contained in:
parent
e463f8e4cd
commit
827bb9fb3c
2 changed files with 13 additions and 2 deletions
|
@ -3,6 +3,12 @@
|
|||
# Script to push docs from my development area to SourceForge, where the
|
||||
# update-docs.sh script unpacks them into their final destination.
|
||||
|
||||
TARGET=python.sourceforge.net:/home/users/fdrake
|
||||
|
||||
if [ "$1" ] ; then
|
||||
scp "$1" $TARGET/python-docs-update.txt || exit $?
|
||||
fi
|
||||
|
||||
START="`pwd`"
|
||||
MYDIR="`dirname $0`"
|
||||
cd "$MYDIR"
|
||||
|
@ -14,4 +20,4 @@ make --no-print-directory || exit $?
|
|||
cd ..
|
||||
RELEASE=`grep '^RELEASE=' Makefile | sed 's|RELEASE=||'`
|
||||
make --no-print-directory HTMLDIR="$HTMLDIR" bziphtml
|
||||
scp "html-$RELEASE.tar.bz2" python.sourceforge.net:/home/users/fdrake/python-docs-update.tar.bz2
|
||||
scp "html-$RELEASE.tar.bz2" $TARGET/python-docs-update.tar.bz2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue