Skip to content
Snippets Groups Projects
Commit cf901e350a2e authored by Steve Borho's avatar Steve Borho
Browse files

workbench: folder history revision set queries need two asterisks

--HG--
branch : stable
parent c997ed09ef96
No related branches found
No related tags found
No related merge requests found
......@@ -686,7 +686,7 @@ def run(ui, *pats, **opts):
for pat in pats:
f = repo.wjoin(pat)
if os.path.isdir(f):
q.append('file("%s/*")' % pat)
q.append('file("%s/**")' % pat)
elif os.path.isfile(f):
q.append('file("%s")' % pat)
w.setRevsetFilter(root, ' or '.join(q))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment