Comments
Patch
@@ -1899,6 +1899,9 @@
"""wraps repo.wwrite"""
self._repo.wwrite(self._path, data, flags)
+ def setflags(self, l, x):
+ self._repo.wvfs.setflags(self._path, l, x)
+
class workingcommitctx(workingctx):
"""A workingcommitctx object makes access to data related to
the revision being committed convenient.
@@ -1291,7 +1291,7 @@
progress(_updating, z, item=f, total=numupdates, unit=_files)
flags, = args
audit(f)
- repo.wvfs.setflags(f, 'l' in flags, 'x' in flags)
+ wctx[f].setflags('l' in flags, 'x' in flags)
updated += 1
# the ordering is important here -- ms.mergedriver will raise if the merge