/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45// Delete `VSCODE_CWD` very early. We have seen6// reports where `code .` would use the wrong7// current working directory due to our variable8// somehow escaping to the parent shell9// (https://github.com/microsoft/vscode/issues/126399)10delete process.env['VSCODE_CWD'];111213