diff options
author | Georg Brandl <georg@python.org> | 2010-03-13 13:41:58 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-03-13 13:41:58 (GMT) |
commit | 45534cec26386890ff773d1f7a507e67573471a7 (patch) | |
tree | cf65e1c836649c57d983b1feaee8f6b443d5bc1d | |
parent | e82110f3a53b34bcaca10b115b037c1cf1b5bd78 (diff) | |
download | cpython-45534cec26386890ff773d1f7a507e67573471a7.zip cpython-45534cec26386890ff773d1f7a507e67573471a7.tar.gz cpython-45534cec26386890ff773d1f7a507e67573471a7.tar.bz2 |
Update for new download location.
-rwxr-xr-x | Doc/tools/dailybuild.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py index 6291d90..c0f45eb 100755 --- a/Doc/tools/dailybuild.py +++ b/Doc/tools/dailybuild.py @@ -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 |