Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/bootstrap-cli.ts
3285 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
// Delete `VSCODE_CWD` very early. We have seen
7
// reports where `code .` would use the wrong
8
// current working directory due to our variable
9
// somehow escaping to the parent shell
10
// (https://github.com/microsoft/vscode/issues/126399)
11
delete process.env['VSCODE_CWD'];
12
13