##// END OF EJS Templates
archive: use manifest.matches() to simplify and speed up matching...
Martin von Zweigbergk -
r40445:5eefd32c default
parent child Browse files
Show More
@@ -321,7 +321,7 b' def archive(repo, dest, node, kind, deco'
321 321 if match(name):
322 322 write(name, 0o644, False, lambda: buildmetadata(ctx))
323 323
324 files = [f for f in ctx.manifest().keys() if match(f)]
324 files = [f for f in ctx.manifest().matches(match)]
325 325 total = len(files)
326 326 if total:
327 327 files.sort()
General Comments 0
You need to be logged in to leave comments. Login now