Skip to content

Commit ddce114

Browse files
committed
revert change to terminal process kill signal
1 parent 728197d commit ddce114

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/terminal/node/terminalProcess.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ export class TerminalProcess extends Disposable implements ITerminalChildProcess
375375
if (this._ptyProcess) {
376376
await this._throttleKillSpawn();
377377
this._logService.trace('IPty#kill');
378-
this._ptyProcess.kill(!isWindows ? 'SIGKILL' : undefined);
378+
this._ptyProcess.kill();
379379
}
380380
} catch (ex) {
381381
// Swallow, the pty has already been killed

0 commit comments

Comments
 (0)