Skip to content

Commit 14aa41a

Browse files
committed
Use fsPath over path for terminal cwd
1 parent 6748078 commit 14aa41a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/parts/terminal/electron-browser/terminalProcessManager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class TerminalProcessManager implements ITerminalProcessManager {
9595

9696
if (shellLaunchConfig.cwd && typeof shellLaunchConfig.cwd === 'object') {
9797
launchRemotely = !!getRemoteAuthority(shellLaunchConfig.cwd);
98-
shellLaunchConfig.cwd = shellLaunchConfig.cwd.path;
98+
shellLaunchConfig.cwd = shellLaunchConfig.cwd.fsPath;
9999
} else {
100100
launchRemotely = !!this._windowService.getConfiguration().remoteAuthority;
101101
}

0 commit comments

Comments
 (0)