Skip to content

Commit c2f5a6a

Browse files
authored
Fix the typo: blob -> glob (#3413)
Signed-off-by: Sheng Chen <[email protected]>
1 parent d186e12 commit c2f5a6a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extension.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,9 +516,9 @@ async function workspaceContainsBuildFiles(): Promise<boolean> {
516516
}
517517

518518
// Nothing found in negated exclusion pattern, do a normal search then.
519-
const inclusionBlob: string = convertToGlob(inclusionPatterns);
520-
const exclusionBlob: string = getExclusionGlob();
521-
if (inclusionBlob && (await workspace.findFiles(inclusionBlob, exclusionBlob, 1 /* maxResults */)).length > 0) {
519+
const inclusionGlob: string = convertToGlob(inclusionPatterns);
520+
const exclusionGlob: string = getExclusionGlob();
521+
if (inclusionGlob && (await workspace.findFiles(inclusionGlob, exclusionGlob, 1 /* maxResults */)).length > 0) {
522522
return true;
523523
}
524524

0 commit comments

Comments
 (0)