Get rid of red herrings (#10309)

This commit is contained in:
Chris LaFreniere
2020-05-08 14:49:49 -07:00
committed by GitHub
parent 3a70bea70d
commit 0fbc3d1cb6
2 changed files with 0 additions and 10 deletions

View File

@@ -333,11 +333,6 @@ export class JupyterServerInstallation implements IJupyterServerInstallation {
delete env['Path']; // Delete extra 'Path' variable for Windows, just in case.
env['PATH'] = this.pythonEnvVarPath;
// We don't want Jupyter to know about DOTNET_ROOT, as it's been modified by the liveshare experience
// Without this, won't be able to find the ASP.NET bits
if (process.env['DOTNET_ROOT']) {
delete env['DOTNET_ROOT'];
}
this.execOptions = {
env: env
};