Merge branch 'master' into greenkeeper-react-dom-15.3.1

This commit is contained in:
Leo Lamprecht 2016-08-19 22:27:29 +02:00 committed by GitHub
commit 58a4f7c45f

View file

@ -43,6 +43,9 @@ module.exports = class Session extends EventEmitter {
});
this.pty.stdout.on('data', (data) => {
if (this.ended) {
return;
}
this.emit('data', data.toString('utf8'));
});