##// END OF EJS Templates
narrow: restrict manifest iteration by using manifest.walk(matcher)...
Martin von Zweigbergk -
r36227:2ad527f7 default
parent child Browse files
Show More
@@ -152,7 +152,7 b' def _computeellipsis(repo, common, heads'
152 152 else:
153 153 # For a root node, we need to include the node if any
154 154 # files in the node match the narrowspec.
155 needed = any(match(f) for f in curmf)
155 needed = any(curmf.walk(match))
156 156
157 157 if needed:
158 158 for head in ellipsisheads[rev]:
General Comments 0
You need to be logged in to leave comments. Login now