summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-09-30 09:03:09 +0200
committerGeorg Brandl <georg@python.org>2012-09-30 09:03:09 +0200
commit2fbe856dc65c63d8cbdd82c8896e00fa813e78bc (patch)
tree582a1e8cfa5f1540641a6892cef679d568592b3e
parente8b2b67950a2d5b3b680f4bc37c94beb8ca07a00 (diff)
downloadcpython-git-2fbe856dc65c63d8cbdd82c8896e00fa813e78bc.tar.gz
Commit current version of the doc "dailybuild" script.
-rwxr-xr-xDoc/tools/dailybuild.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py
index 1a471e6842..0be8674a0c 100755
--- a/Doc/tools/dailybuild.py
+++ b/Doc/tools/dailybuild.py
@@ -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: