diff options
author | Georg Brandl <georg@python.org> | 2010-03-12 21:29:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-12 21:29:25 (GMT) |
commit | 0da11bb3e4eb653fdf9a8256468f8c04925de227 (patch) | |
tree | ba4a5d5c06168c971feb5b52d8b3849ba09faeb4 /Misc | |
parent | b3db5f6bfd88d9b204bc439a316eb40b213fd9ec (diff) | |
download | cpython-0da11bb3e4eb653fdf9a8256468f8c04925de227.zip cpython-0da11bb3e4eb653fdf9a8256468f8c04925de227.tar.gz cpython-0da11bb3e4eb653fdf9a8256468f8c04925de227.tar.bz2 |
Merged revisions 78880 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78880 | georg.brandl | 2010-03-12 22:27:23 +0100 (Fr, 12 Mär 2010) | 1 line
Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine.
........
Diffstat (limited to 'Misc')
-rwxr-xr-x | Misc/build.sh | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Misc/build.sh b/Misc/build.sh index 81cc647..5d096ee 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -284,9 +284,10 @@ echo "</body>" >> $RESULT_FILE echo "</html>" >> $RESULT_FILE ## copy results -chgrp -R webmaster build/html -chmod -R g+w build/html -rsync $RSYNC_OPTS build/html/* $REMOTE_SYSTEM:$REMOTE_DIR -rsync $RSYNC_OPTS dist/* $REMOTE_SYSTEM:$REMOTE_DIR_DIST -cd ../build -rsync $RSYNC_OPTS index.html *.out $REMOTE_SYSTEM:$REMOTE_DIR/results/ +## (not used anymore, the daily build is now done directly on the server) +#chgrp -R webmaster build/html +#chmod -R g+w build/html +#rsync $RSYNC_OPTS build/html/* $REMOTE_SYSTEM:$REMOTE_DIR +#rsync $RSYNC_OPTS dist/* $REMOTE_SYSTEM:$REMOTE_DIR_DIST +#cd ../build +#rsync $RSYNC_OPTS index.html *.out $REMOTE_SYSTEM:$REMOTE_DIR/results/ |