##// END OF EJS Templates
merge: use util.unlinkpath for removing moved files...
Mads Kiilerich -
r18333:f6f23eca default
parent child Browse files
Show More
@@ -367,7 +367,7 b' def applyupdates(repo, actions, wctx, mc'
367 if os.path.lexists(repo.wjoin(f)):
367 if os.path.lexists(repo.wjoin(f)):
368 repo.ui.debug("removing %s\n" % f)
368 repo.ui.debug("removing %s\n" % f)
369 audit(f)
369 audit(f)
370 os.unlink(repo.wjoin(f))
370 util.unlinkpath(repo.wjoin(f))
371
371
372 numupdates = len(actions)
372 numupdates = len(actions)
373 for i, a in enumerate(actions):
373 for i, a in enumerate(actions):
General Comments 0
You need to be logged in to leave comments. Login now