We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 860e1c8 commit 4ee2f66Copy full SHA for 4ee2f66
src/local-ssh/proxy.ts
@@ -20,7 +20,9 @@ interface ClientOptions {
20
}
21
22
function getClientOptions(): ClientOptions {
23
- const args = process.argv.slice(2);
+ // Since 1.87.0 new electron version does not use this falga anymore, for now filter it
24
+ // we we should delete the logic and update minimun vscode version of extension
25
+ const args = process.argv.slice(2).filter(arg => arg !== '--ms-enable-electron-run-as-node');
26
// %h is in the form of <ws_id>.vss.<gitpod_host>'
27
// add `https://` prefix since our gitpodHost is actually a url not host
28
const host = args[0];
0 commit comments