##// END OF EJS Templates
archival: fixed archival generation at subpaths
super-admin -
r1137:87b01bb3 default
parent child Browse files
Show More
@@ -1143,7 +1143,7 b' class HgRemote(RemoteBase):'
1143 if is_root:
1143 if is_root:
1144 matcher = alwaysmatcher(badfn=None)
1144 matcher = alwaysmatcher(badfn=None)
1145 else:
1145 else:
1146 matcher = patternmatcher('', [(b'glob', path+'/**', b'')], badfn=None)
1146 matcher = patternmatcher('', [(b'glob', safe_bytes(path)+b'/**', b'')], badfn=None)
1147 file_iter = ctx.manifest().walk(matcher)
1147 file_iter = ctx.manifest().walk(matcher)
1148
1148
1149 for fn in file_iter:
1149 for fn in file_iter:
General Comments 0
You need to be logged in to leave comments. Login now