-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support recursive globbing (**/) for download paths #123
Comments
Yeah, this would be nice! I wanted |
Just a small note that I stumbled across Sphinx's path matching routines recently, which include an implementation of |
Following up to say that I think It turns out this sort of matching was going to be really handy for some other work I'm doing, and my searches this time turned up wcmatch. Trialing it out, it works great and has minimal deps. Aim is to match Bash, which is exactly what we want. Once wcmatch is in the codebase, we can loop back and update the |
This helps reduce the number of patterns needed to download large-but-specific subsets of a build with many output files (e.g. ncov). Resolves <#123>.
When downloading assets from large builds (I'm looking at you nCoV) the
--download
arg is immensely helpful. Currently to download the intermediate files the nCoV workflow one needs to supply an argument for each directory, e.g.How feasible would it be to support recursive globbing, such as
--download results/**
?The text was updated successfully, but these errors were encountered: