diff options
author | Georg Brandl <georg@python.org> | 2010-03-12 21:30:42 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-12 21:30:42 (GMT) |
commit | 416d662f306b00b084d65297a3c93f04ed39d916 (patch) | |
tree | 40098d5fd7708abc08d0c59ea31e47248aa2a7ab | |
parent | 2417634087b6532ad555b4fa367aceb0ebab44cc (diff) | |
download | cpython-416d662f306b00b084d65297a3c93f04ed39d916.zip cpython-416d662f306b00b084d65297a3c93f04ed39d916.tar.gz cpython-416d662f306b00b084d65297a3c93f04ed39d916.tar.bz2 |
Merged revisions 78882 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
................
r78882 | georg.brandl | 2010-03-12 22:29:28 +0100 (Fr, 12 Mär 2010) | 9 lines
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.
........
................
-rwxr-xr-x | Misc/build.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Misc/build.sh b/Misc/build.sh index 4b55941..03c0d7b 100755 --- a/Misc/build.sh +++ b/Misc/build.sh @@ -273,8 +273,9 @@ 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 -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 +#cd ../build +#rsync $RSYNC_OPTS index.html *.out $REMOTE_SYSTEM:$REMOTE_DIR/results/ |