You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.
After updating vscode-go to 0.6.74 I could not load gcc anymore, even though it was preset in the %PATH% and I was able to call it from builtin terminal.
Checking if that is the case on my other PC proved that it happens right after updating vscode-go to 0.6.74.
I was able to pin point the issue to this code 37570ab:
After updating vscode-go to 0.6.74 I could not load gcc anymore, even though it was preset in the %PATH% and I was able to call it from builtin terminal.
Checking if that is the case on my other PC proved that it happens right after updating vscode-go to 0.6.74.
I was able to pin point the issue to this code 37570ab:
envVars['PATH']
does not actually exist (at least on Windows 7),envVars['Path']
does.The code can't find the
envVars['PATH']
, but is still able to updateenvVars['Path']
with"undefinedC:\tools\go"
. JavaScript is awesome...The text was updated successfully, but these errors were encountered: