Restore passing SIGINT signals to spawned child processes (#7511)

This commit is contained in:
Brian Ng
2018-03-07 07:10:11 -06:00
committed by Daniel Tschinder
parent 65dcc4eabe
commit 7e423de911

View File

@@ -95,5 +95,9 @@ getV8Flags(function(err, v8Flags) {
}
});
});
process.on("SIGINT", () => {
proc.kill("SIGINT");
process.exit(1);
});
}
});