Kaydet (Commit) 5ebb3beb authored tarafından Georg Brandl's avatar Georg Brandl

Update dailybuild script to newest version from dinsdale.

üst 10c78a78
...@@ -33,10 +33,9 @@ WWWROOT = '/data/ftp.python.org/pub/docs.python.org' ...@@ -33,10 +33,9 @@ WWWROOT = '/data/ftp.python.org/pub/docs.python.org'
BRANCHES = [ BRANCHES = [
# checkout, target, isdev # checkout, target, isdev
(BUILDROOT + '/python26', WWWROOT, False), (BUILDROOT + '/python32', WWWROOT + '/dev', True),
(BUILDROOT + '/python27', WWWROOT, False),
(BUILDROOT + '/python31', WWWROOT + '/py3k', 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): ...@@ -53,7 +52,7 @@ def build_one(checkout, target, isdev):
print 'Copying HTML files' print 'Copying HTML files'
os.system('cp -a Doc/build/html/* %s' % target) os.system('cp -a Doc/build/html/* %s' % target)
print 'Copying dist files' 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) os.system('cp -a Doc/dist/* %s/archives' % target)
print 'Finished' print 'Finished'
print '=' * 80 print '=' * 80
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment