Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions lib/exception.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,10 @@ module.exports = {
process.exit(1);
};

// Start reading from stdin so we don't exit instantly
process.stdin.resume();
// Start reading from stdin so we don't exit instantly, ISSNode does not bind to stdin
if (!process.env.IISNODE_VERSION) {
process.stdin.resume();
}

process.on('exit', function () {
if (!exit) {
Expand Down