]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Commit current version of the doc "dailybuild" script.
authorGeorg Brandl <georg@python.org>
Sun, 30 Sep 2012 07:03:09 +0000 (09:03 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 30 Sep 2012 07:03:09 +0000 (09:03 +0200)
Doc/tools/dailybuild.py

index 1a471e68427a3f818e1e3ab8224d7dbea838cec1..0be8674a0c326061e3f62568a77232b6ac314a99 100755 (executable)
@@ -33,17 +33,17 @@ WWWROOT = '/data/ftp.python.org/pub/docs.python.org'
 
 BRANCHES = [
     # checkout, target, isdev
-    (BUILDROOT + '/python33', WWWROOT + '/dev', True),
+    (BUILDROOT + '/python33', WWWROOT + '/py3k', False),
+    (BUILDROOT + '/python34', WWWROOT + '/dev', True),
     (BUILDROOT + '/python27', WWWROOT, False),
-    (BUILDROOT + '/python32', WWWROOT + '/py3k', False),
 ]
 
 
 def build_one(checkout, target, isdev):
     print 'Doc autobuild started in %s' % checkout
     os.chdir(checkout)
-    print 'Running svn update'
-    os.system('svn update')
+    print 'Running hg pull --update'
+    os.system('/usr/local/bin/hg pull --update')
     print 'Running make autobuild'
     if os.WEXITSTATUS(os.system(
         'cd Doc; make autobuild-%s' % (isdev and 'dev' or 'stable'))) == 2: