From 1c60855e324dfc3ef5ea474a9a2bf5863f44601a Mon Sep 17 00:00:00 2001 From: Andre Weinand Date: Fri, 9 Nov 2018 10:46:23 +0100 Subject: [PATCH] Update extHostDebugService.ts make execPath variable work for EH --- src/vs/workbench/api/node/extHostDebugService.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();