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
As of https://code.visualstudio.com/updates/v1_92, VSCode now uses a version of nodejs that doesn't allow spawning processes via their .cmd file, which is what we do in windows.
The fix should simply be to add shell: true to the spawn, but I'm verifying this.
This will need fixing across main, main-2.x, release/2.9.x.
A temporary workaround is to use the previous VSCode release.
The text was updated successfully, but these errors were encountered:
As of https://code.visualstudio.com/updates/v1_92, VSCode now uses a version of nodejs that doesn't allow spawning processes via their
.cmd
file, which is what we do in windows.The fix should simply be to add
shell: true
to the spawn, but I'm verifying this.This will need fixing across
main
,main-2.x
,release/2.9.x
.A temporary workaround is to use the previous VSCode release.
The text was updated successfully, but these errors were encountered: