Commit 0a2665d
committed
Fix remote_download_regex matching all files unconditionally
The regex pattern `.*|.*\.(ext1|ext2|...)$` matches everything
because `.*` before `|` is an unbounded wildcard with no anchor.
This makes the extension filter useless, causing all remote cache
outputs to be downloaded.
Remove the `.*|` so only files with the listed extensions (plus
indexstores when enabled) are downloaded.1 parent ba7c9e7 commit 0a2665d
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
56 | 56 | | |
57 | 57 | | |
58 | 58 | | |
59 | | - | |
| 59 | + | |
60 | 60 | | |
61 | 61 | | |
62 | 62 | | |
| |||
0 commit comments