Skip to content

Commit 53f4998

Browse files
committed
Nit
1 parent e3d8fc3 commit 53f4998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/workspaceUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export async function selectWorkspaceFile(
4747
context.rootFolder ?? workspace.workspaceFolders[0],
4848
globPattern ?? '**/*'
4949
);
50-
const files = await workspace.findFiles(relativePattern);
50+
const files: Uri[] = await workspace.findFiles(relativePattern);
5151

5252
// If dockerfile(s), log the count
5353
if (globPattern === dockerfileGlobPattern || globPattern === `**/${dockerfileGlobPattern}`) {

0 commit comments

Comments
 (0)