Skip to content

Commit 477d7c4

Browse files
authored
Fix issue where remote and virtual linux did not get env reporting (microsoft#242207)
fix issue where remote and virtual linux did not get env reporting
1 parent 6b92583 commit 477d7c4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/vs/server/node/remoteTerminalChannel.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ export class RemoteTerminalChannel extends Disposable implements IServerChannel<
201201
reconnectionProperties: args.shellLaunchConfig.reconnectionProperties,
202202
type: args.shellLaunchConfig.type,
203203
isFeatureTerminal: args.shellLaunchConfig.isFeatureTerminal,
204-
tabActions: args.shellLaunchConfig.tabActions
204+
tabActions: args.shellLaunchConfig.tabActions,
205+
shellIntegrationEnvironmentReporting: args.shellLaunchConfig.shellIntegrationEnvironmentReporting,
205206
};
206207

207208

src/vs/workbench/contrib/terminal/browser/remoteTerminalBackend.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ class RemoteTerminalBackend extends BaseTerminalBackend implements ITerminalBack
190190
type: shellLaunchConfig.type,
191191
isFeatureTerminal: shellLaunchConfig.isFeatureTerminal,
192192
tabActions: shellLaunchConfig.tabActions,
193+
shellIntegrationEnvironmentReporting: shellLaunchConfig.shellIntegrationEnvironmentReporting,
193194
};
194195
const activeWorkspaceRootUri = this._historyService.getLastActiveWorkspaceRoot();
195196

0 commit comments

Comments
 (0)