Update extHostDebugService.ts

make execPath variable work for EH
This commit is contained in:
Andre Weinand
2018-11-09 10:46:23 +01:00
committed by GitHub
parent f637774b08
commit 1c60855e32

View File

@@ -766,7 +766,7 @@ export class ExtHostVariableResolverService extends AbstractVariableResolverServ
return configurationService.getConfiguration(undefined, folderUri).get<string>(section);
},
getExecPath: (): string | undefined => {
return undefined; // does not exist in EH
return process.env['VSCODE_EXEC_PATH'];
},
getFilePath: (): string | undefined => {
const activeEditor = editorService.activeEditor();