Skip to content

Commit

Permalink
Replace pty.js by node-pty (fixes embarklabs#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
danikaze committed Jan 10, 2020
1 parent d2ab4ef commit b535695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/widgets/terminal.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Terminal.prototype.bootstrap = function() {
return;
}

this.pty = require('pty.js').fork(this.shell, this.args, {
this.pty = require('node-pty').fork(this.shell, this.args, {
name: this.termName,
cols: this.width - this.iwidth,
rows: this.height - this.iheight,
Expand Down

0 comments on commit b535695

Please sign in to comment.