##// END OF EJS Templates
largefiles: reduce redundant splitstandin/standin combination...
FUJIWARA Katsunori -
r16075:d2e8e79a default
parent child Browse files
Show More
@@ -454,7 +454,7 b' def override_copy(orig, ui, repo, pats, '
454 m._fmap = set(m._files)
454 m._fmap = set(m._files)
455 orig_matchfn = m.matchfn
455 orig_matchfn = m.matchfn
456 m.matchfn = lambda f: (lfutil.isstandin(f) and
456 m.matchfn = lambda f: (lfutil.isstandin(f) and
457 lfile(lfutil.splitstandin(f)) and
457 (f in manifest) and
458 orig_matchfn(lfutil.splitstandin(f)) or
458 orig_matchfn(lfutil.splitstandin(f)) or
459 None)
459 None)
460 return m
460 return m
General Comments 0
You need to be logged in to leave comments. Login now