We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 108d5ac + 12cab32 commit f1c05a3Copy full SHA for f1c05a3
lib/exception.js
@@ -57,8 +57,10 @@ module.exports = {
57
process.exit(1);
58
};
59
60
- // Start reading from stdin so we don't exit instantly
61
- process.stdin.resume();
+ // Start reading from stdin so we don't exit instantly, ISSNode does not bind to stdin
+ if (!process.env.IISNODE_VERSION) {
62
+ process.stdin.resume();
63
+ }
64
65
process.on('exit', function () {
66
if (!exit) {
0 commit comments