filemerge: move a util copy call to filectx.write

This way a future in-memory-merge context can intercept them.

Differential Revision: https://phab.mercurial-scm.org/D400
This commit is contained in:
Phil Cohen 2017-08-31 11:28:59 -07:00
parent bea82440f1
commit 7790af6f63

View File

@ -348,7 +348,9 @@ def _premerge(repo, fcd, fco, fca, toolconf, files, labels=None):
return 0
if premerge not in validkeep:
# restore from backup and try again
util.copyfile(back, repo.wjoin(fcd.path()))
# TODO: Add a workingfilectx.write(otherfilectx) path so we can use
# util.copy here instead.
fcd.write(util.readfile(back), fcd.flags())
return 1 # continue merging
def _mergecheck(repo, mynode, orig, fcd, fco, fca, toolconf):