File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -1466,10 +1466,10 @@ index 0000000000000000000000000000000000000000..6ce56bec114a6d8daf5dd3ded945ea78
1466
1466
+ }
1467
1467
diff --git a/src/vs/server/node/channel.ts b/src/vs/server/node/channel.ts
1468
1468
new file mode 100644
1469
- index 0000000000000000000000000000000000000000..7619b02f04b6e61e86e741b09b542d86fab97e3d
1469
+ index 0000000000000000000000000000000000000000..769d57953e782b7a72519599274630236114b17d
1470
1470
--- /dev/null
1471
1471
+++ b/src/vs/server/node/channel.ts
1472
- @@ -0,0 +1,887 @@
1472
+ @@ -0,0 +1,889 @@
1473
1473
+ import { field, logger } from '@coder/logger';
1474
1474
+ import { Server } from '@coder/node-browser';
1475
1475
+ import * as os from 'os';
@@ -1866,7 +1866,9 @@ index 0000000000000000000000000000000000000000..7619b02f04b6e61e86e741b09b542d86
1866
1866
+ return args.resolvedVariables[`config:${section}`];
1867
1867
+ },
1868
1868
+ getExecPath: (): string | undefined => {
1869
- + return env['VSCODE_EXEC_PATH'];
1869
+ + // Assuming that resolverEnv is just for use in the resolver and not for
1870
+ + // the terminal itself.
1871
+ + return (args.resolverEnv && args.resolverEnv['VSCODE_EXEC_PATH']) || env['VSCODE_EXEC_PATH'];
1870
1872
+ },
1871
1873
+ // This is just a guess; this is the only file-related thing we're sent
1872
1874
+ // and none of these resolver methods seem to get called so I don't know
You can’t perform that action at this time.
0 commit comments