diff --git a/src/vs/workbench/api/node/extHostDebugService.ts b/src/vs/workbench/api/node/extHostDebugService.ts index a7c7ab899cd..98730938a27 100644 --- a/src/vs/workbench/api/node/extHostDebugService.ts +++ b/src/vs/workbench/api/node/extHostDebugService.ts @@ -766,7 +766,7 @@ export class ExtHostVariableResolverService extends AbstractVariableResolverServ return configurationService.getConfiguration(undefined, folderUri).get(section); }, getExecPath: (): string | undefined => { - return undefined; // does not exist in EH + return process.env['VSCODE_EXEC_PATH']; }, getFilePath: (): string | undefined => { const activeEditor = editorService.activeEditor();