##// END OF EJS Templates
filemerge: flush if using deferred writes when running a merge tool...
Phil Cohen -
r34125:9c07cff0 default
parent child Browse files
Show More
@@ -666,6 +666,11 b' def _filemerge(premerge, repo, wctx, myn'
666 onfailure = _("merging %s failed!\n")
666 onfailure = _("merging %s failed!\n")
667 precheck = None
667 precheck = None
668
668
669 # If using deferred writes, must flush any deferred contents if running
670 # an external merge tool since it has arbitrary access to the working
671 # copy.
672 wctx.flushall()
673
669 toolconf = tool, toolpath, binary, symlink
674 toolconf = tool, toolpath, binary, symlink
670
675
671 if mergetype == nomerge:
676 if mergetype == nomerge:
General Comments 0
You need to be logged in to leave comments. Login now