Update dailybuild script to newest version from dinsdale.

This commit is contained in:
Georg Brandl 2010-08-03 12:39:02 +00:00
parent 10c78a78a7
commit 5ebb3beb9b
1 changed files with 3 additions and 4 deletions

View File

@ -33,10 +33,9 @@
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