We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3d8fc3 commit 53f4998Copy full SHA for 53f4998
src/utils/workspaceUtils.ts
@@ -47,7 +47,7 @@ export async function selectWorkspaceFile(
47
context.rootFolder ?? workspace.workspaceFolders[0],
48
globPattern ?? '**/*'
49
);
50
- const files = await workspace.findFiles(relativePattern);
+ const files: Uri[] = await workspace.findFiles(relativePattern);
51
52
// If dockerfile(s), log the count
53
if (globPattern === dockerfileGlobPattern || globPattern === `**/${dockerfileGlobPattern}`) {
0 commit comments