diff options
author | Peter Bex <peter@more-magic.net> | 2011-06-05 11:49:34 +0200 |
---|---|---|
committer | Peter Bex <peter@more-magic.net> | 2011-06-05 11:49:34 +0200 |
commit | ca806ba8ab34180aa977ad7169998c9bb2ffb304 (patch) | |
tree | 2f26452402d673bcdae4cd8fb7b9c81cdbe9a4c8 | |
parent | 958e076092e41d4fec848b42402272dc494df4f9 (diff) | |
download | hg-egg-author-ca806ba8ab34180aa977ad7169998c9bb2ffb304.tar.gz |
Also ignore .hgignore when updating meta-files
-rw-r--r-- | egg-author.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/egg-author.py b/egg-author.py index b9d495a..b01420d 100644 --- a/egg-author.py +++ b/egg-author.py @@ -159,6 +159,8 @@ def update_meta(ui, repo): files = repo.status(clean=True)[6:][0] if '.hgtags' in files: files.remove('.hgtags') + if '.hgignore' in files: + files.remove('.hgignore') # A list without the parens around it files_list = ' '.join(map(_to_scheme_string, files)) |