We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 493fc8f commit 5014931Copy full SHA for 5014931
src/requisition-runners/requisition-file-pattern-parser.ts
@@ -38,7 +38,7 @@ export class RequisitionFilePatternParser {
38
private getMatchingFiles(): string[] {
39
let result: string[] = [];
40
this.patterns.map((pattern: string) => {
41
- const items = glob.sync(pattern);
+ const items = glob.sync(pattern, {nodir: true});
42
if (items.length > 0) {
43
result = result.concat(items.sort());
44
} else {
0 commit comments