[Python-checkins] r78880 - python/trunk/Misc/build.sh

georg.brandl python-checkins at python.org
Fri Mar 12 22:27:23 CET 2010


Author: georg.brandl
Date: Fri Mar 12 22:27:23 2010
New Revision: 78880

Log:
Deactivate automatic upload of the docs to python.org, they will now be built by a job on that machine.

Modified:
   python/trunk/Misc/build.sh

Modified: python/trunk/Misc/build.sh
==============================================================================
--- python/trunk/Misc/build.sh	(original)
+++ python/trunk/Misc/build.sh	Fri Mar 12 22:27:23 2010
@@ -271,8 +271,9 @@
 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/


More information about the Python-checkins mailing list