Move terminalProcess to node/

Part of #27182
This commit is contained in:
Daniel Imms 2017-05-24 10:50:28 -07:00 committed by Dirk Baeumer
parent 26aaf73ff9
commit d3cf7e5fd8
2 changed files with 2 additions and 2 deletions

View file

@ -473,9 +473,9 @@ export class TerminalInstance implements ITerminalInstance {
}
const env = TerminalInstance.createTerminalEnv(process.env, shell, this._getCwd(shell, workspace), locale, this._cols, this._rows);
this._title = shell.name || '';
this._process = cp.fork('./terminalProcess', [], {
this._process = cp.fork('../node/terminalProcess', [], {
env: env,
cwd: URI.parse(path.dirname(require.toUrl('./terminalProcess'))).fsPath
cwd: URI.parse(path.dirname(require.toUrl('../node/terminalProcess'))).fsPath
});
if (!shell.name) {
// Only listen for process title changes when a name is not provided