Skip to content

Commit 1c60855

Browse files
authored
Update extHostDebugService.ts
make execPath variable work for EH
1 parent f637774 commit 1c60855

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/api/node/extHostDebugService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -766,7 +766,7 @@ export class ExtHostVariableResolverService extends AbstractVariableResolverServ
766766
return configurationService.getConfiguration(undefined, folderUri).get<string>(section);
767767
},
768768
getExecPath: (): string | undefined => {
769-
return undefined; // does not exist in EH
769+
return process.env['VSCODE_EXEC_PATH'];
770770
},
771771
getFilePath: (): string | undefined => {
772772
const activeEditor = editorService.activeEditor();

0 commit comments

Comments
 (0)