We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6748078 commit 14aa41aCopy full SHA for 14aa41a
1 file changed
src/vs/workbench/parts/terminal/electron-browser/terminalProcessManager.ts
@@ -95,7 +95,7 @@ export class TerminalProcessManager implements ITerminalProcessManager {
95
96
if (shellLaunchConfig.cwd && typeof shellLaunchConfig.cwd === 'object') {
97
launchRemotely = !!getRemoteAuthority(shellLaunchConfig.cwd);
98
- shellLaunchConfig.cwd = shellLaunchConfig.cwd.path;
+ shellLaunchConfig.cwd = shellLaunchConfig.cwd.fsPath;
99
} else {
100
launchRemotely = !!this._windowService.getConfiguration().remoteAuthority;
101
}
0 commit comments