
python-checkins at python
May 1, 2012, 9:17 AM
Post #1 of 1
(29 views)
Permalink
|
|
release: Remove new .hgtouch file, and also .hgtags from archive
|
|
http://hg.python.org/release/rev/d8b32a40ce66 changeset: 60:d8b32a40ce66 user: Georg Brandl <georg [at] python> date: Tue May 01 18:13:38 2012 +0200 summary: Remove new .hgtouch file, and also .hgtags from archive files: release.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/release.py b/release.py --- a/release.py +++ b/release.py @@ -263,8 +263,9 @@ archivename = 'Python-%s' % tag.text run_cmd(['hg', 'archive', '-r', tag.hgname, archivename]) with changed_dir(archivename): - print('Removing VCS .*ignore and .hgeol') - for name in ('.hgignore', '.hgeol', '.bzrignore', '.gitignore'): + print('Removing VCS .*ignore and .hg*') + for name in ('.hgignore', '.hgeol', '.hgtags', '.hgtouch', + '.bzrignore', '.gitignore'): try: os.unlink(name) except OSError: -- Repository URL: http://hg.python.org/release
|