Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 5f769c7

Browse files
committed
Fix iteration of executable paths
1 parent f18caeb commit 5f769c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ export async function activate(context: ExtensionContext) {
132132
);
133133
}));
134134

135-
for (const executablePath in executablePaths) {
135+
for (const executablePath of executablePaths) {
136136
if (executablePath) {
137137
return { command: executablePath, args };
138138
}

0 commit comments

Comments
 (0)