##// END OF EJS Templates
archival: use walk() instead of matches() on manifest...
Augie Fackler -
r44766:e786d69c default
parent child Browse files
Show More
@@ -355,7 +355,7 b' def archive('
355 355 if match(name):
356 356 write(name, 0o644, False, lambda: buildmetadata(ctx))
357 357
358 files = [f for f in ctx.manifest().matches(match)]
358 files = list(ctx.manifest().walk(match))
359 359 total = len(files)
360 360 if total:
361 361 files.sort()
General Comments 0
You need to be logged in to leave comments. Login now