Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PATH environment variable name is case sensitive in the settings on windows #32787

Closed
marekr opened this issue Aug 18, 2017 · 0 comments · Fixed by #32800
Closed

PATH environment variable name is case sensitive in the settings on windows #32787

marekr opened this issue Aug 18, 2017 · 0 comments · Fixed by #32800
Assignees
Labels
bug Issue identified by VS Code Team member as probable bug terminal Integrated terminal issues verified Verification succeeded windows VS Code on Windows issues
Milestone

Comments

@marekr
Copy link

marekr commented Aug 18, 2017

  • VSCode Version: Code 1.15.0 (8b95971, 2017-08-09T20:16:18.034Z)
  • OS Version: Windows_NT x64 10.0.15063
  • Extensions:
Extension Author (truncated) Version
overtype ada 0.2.0
swagger-viewer Arj 1.4.0
vscode-eslint dba 1.2.11
python don 0.7.0
tslint eg2 0.17.0
vscode-npm-script eg2 0.2.0
crane Hvy 0.3.8
asciidoctor-vscode joa 0.3.5
language-asciidoc jus 1.3.1
vscode-rust kal 0.4.2
php-symbols lin 2.1.0
debugger-for-chrome msj 3.1.8

It appears that "terminal.integrated.env.windows" is weirdly case sensitive on Windows.

  "terminal.integrated.env.windows": {
    "Path" : "blah"
  }

in the powershell:

$Env:Path
blah
$Env:PATH
blah

If you make it

{
  "terminal.integrated.env.windows": {
    "PATH" : "blah"
  }
}

Then it'll fail to override path altogether....

$Env:Path
BLOB OF SYSTEM PATHS
$Env:PATH
BLOB OF SYSTEM PATHS

If you make it

{
  "terminal.integrated.env.windows": {
    "PATH2" : "blah"
  }
}

$Env:PATH2
Blah
$Env:Path2
Blah

@vscodebot vscodebot bot added the terminal Integrated terminal issues label Aug 18, 2017
@Tyriar Tyriar added the bug Issue identified by VS Code Team member as probable bug label Aug 18, 2017
@Tyriar Tyriar added this to the August 2017 milestone Aug 18, 2017
@Tyriar Tyriar added the windows VS Code on Windows issues label Aug 18, 2017
@roblourens roblourens added the verified Verification succeeded label Aug 31, 2017
@vscodebot vscodebot bot locked and limited conversation to collaborators Nov 17, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Issue identified by VS Code Team member as probable bug terminal Integrated terminal issues verified Verification succeeded windows VS Code on Windows issues
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants