##// END OF EJS Templates
merge: use repo.wvfs.setflags() instead of util.setflags()...
Phil Cohen -
r32246:7e793732 default
parent child Browse files
Show More
@@ -1288,7 +1288,7 b' def applyupdates(repo, actions, wctx, mc'
1288 progress(_updating, z, item=f, total=numupdates, unit=_files)
1288 progress(_updating, z, item=f, total=numupdates, unit=_files)
1289 flags, = args
1289 flags, = args
1290 audit(f)
1290 audit(f)
1291 util.setflags(repo.wjoin(f), 'l' in flags, 'x' in flags)
1291 repo.wvfs.setflags(f, 'l' in flags, 'x' in flags)
1292 updated += 1
1292 updated += 1
1293
1293
1294 # the ordering is important here -- ms.mergedriver will raise if the merge
1294 # the ordering is important here -- ms.mergedriver will raise if the merge
General Comments 0
You need to be logged in to leave comments. Login now