Skip to content
Snippets Groups Projects
Commit ddadb6b0 authored by Ryan McElroy's avatar Ryan McElroy
Browse files

dirstate: use tryunlink

parent b71143b1
No related branches found
No related tags found
No related merge requests found
......@@ -1262,8 +1262,7 @@
backupname = prefix + self._filename + suffix
assert backupname != filename
if self._opener.exists(backupname):
self._opener.unlink(backupname)
self._opener.tryunlink(backupname)
# hardlink backup is okay because _writedirstate is always called
# with an "atomictemp=True" file.
util.copyfile(self._opener.join(filename),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment