We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e63dd2e commit 0b7e58cCopy full SHA for 0b7e58c
packages/cli/src/cli/cmd/show/files.ts
@@ -66,6 +66,7 @@ export default new Command()
66
const matchesFilter = type.file.some(
67
(f: string) =>
68
bucketConfig.pathPattern.includes(f) ||
69
+ minimatch(bucketConfig.pathPattern, `*${f}*`) ||
70
minimatch(bucketConfig.pathPattern, f),
71
);
72
if (!matchesFilter) {
0 commit comments