Mercurial > hg > mercurial-crew
changeset 8044:c1e2b7407dc3
purge: fix b777dd8f7836 (remove read-only files)
- use try/except to avoid unnecessary work
- edit only mode bits
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Sat, 11 Apr 2009 00:13:18 +0200 |
parents | b777dd8f7836 |
children | f3ef8a352d83 |
files | hgext/purge.py tests/test-purge |
diffstat | 2 files changed, 10 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/hgext/purge.py +++ b/hgext/purge.py @@ -73,11 +73,15 @@ ui.write('%s%s' % (name, eol)) def removefile(path): - # read-only files cannot be unlinked under Windows - s = os.stat(path) - if (s.st_dev & stat.S_IWRITE) == 0: - os.chmod(path, s.st_mode | stat.S_IWRITE) - os.remove(path) + try: + os.remove(path) + except OSError: + # read-only files cannot be unlinked under Windows + s = os.stat(path) + if (s.st_mode & stat.S_IWRITE) != 0: + raise + os.chmod(path, stat.S_IMODE(s.st_mode) | stat.S_IWRITE) + os.remove(path) directories = [] match = cmdutil.match(repo, dirs, opts)