summaryrefslogtreecommitdiffstats
path: root/Doc/tools/dailybuild.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-03 12:39:02 (GMT)
committerGeorg Brandl <georg@python.org>2010-08-03 12:39:02 (GMT)
commit5ebb3beb9b62555e96c1bfdc96609819c68e3ae0 (patch)
treecb1dc19802426164200e93a5a608f91468446e08 /Doc/tools/dailybuild.py
parent10c78a78a76d064cd5d4879bf9a40bcc7376c582 (diff)
downloadcpython-5ebb3beb9b62555e96c1bfdc96609819c68e3ae0.zip
cpython-5ebb3beb9b62555e96c1bfdc96609819c68e3ae0.tar.gz
cpython-5ebb3beb9b62555e96c1bfdc96609819c68e3ae0.tar.bz2
Update dailybuild script to newest version from dinsdale.
Diffstat (limited to 'Doc/tools/dailybuild.py')
-rwxr-xr-xDoc/tools/dailybuild.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py
index c0f45eb..df401bb 100755
--- a/Doc/tools/dailybuild.py
+++ b/Doc/tools/dailybuild.py
@@ -33,10 +33,9 @@ WWWROOT = '/data/ftp.python.org/pub/docs.python.org'
BRANCHES = [
# checkout, target, isdev
- (BUILDROOT + '/python26', WWWROOT, False),
+ (BUILDROOT + '/python32', WWWROOT + '/dev', True),
+ (BUILDROOT + '/python27', WWWROOT, False),
(BUILDROOT + '/python31', WWWROOT + '/py3k', False),
- (BUILDROOT + '/python27', WWWROOT + '/dev', True),
- (BUILDROOT + '/python32', WWWROOT + '/dev/py3k', True),
]
@@ -53,7 +52,7 @@ def build_one(checkout, target, isdev):
print 'Copying HTML files'
os.system('cp -a Doc/build/html/* %s' % target)
print 'Copying dist files'
- os.system('mkdir %s/archives' % target)
+ os.system('mkdir -p %s/archives' % target)
os.system('cp -a Doc/dist/* %s/archives' % target)
print 'Finished'
print '=' * 80