Update for new download location.

This commit is contained in:
Georg Brandl 2010-03-13 13:41:58 +00:00
parent e82110f3a5
commit 45534cec26
1 changed files with 2 additions and 1 deletions

View File

@ -53,7 +53,8 @@ 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('cp -a Doc/dist %s/dist' % target)
os.system('mkdir %s/archives' % target)
os.system('cp -a Doc/dist/* %s/archives' % target)
print 'Finished'
print '=' * 80