We should see if process.env is actually needed once the renderer is fully sandboxed. Currently we overwrite the process.env with properties from the user environment, but not when sandbox is enabled:
|
if (!sandbox) { |
|
Object.assign(safeProcess.env, configuration.userEnv); |
|
} |
We should see if
process.envis actually needed once the renderer is fully sandboxed. Currently we overwrite theprocess.envwith properties from the user environment, but not when sandbox is enabled:vscode/src/bootstrap-window.js
Lines 68 to 70 in 5264ab9