From: Georg Brandl Date: Tue, 3 Aug 2010 12:39:02 +0000 (+0000) Subject: Update dailybuild script to newest version from dinsdale. X-Git-Tag: v2.7.1rc1~475 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ebb3beb9b62555e96c1bfdc96609819c68e3ae0;p=python Update dailybuild script to newest version from dinsdale. --- diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py index c0f45ebc27..df401bbf53 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