Restore passing SIGINT signals to spawned child processes (#7511)
This commit is contained in:
parent
65dcc4eabe
commit
7e423de911
@ -95,5 +95,9 @@ getV8Flags(function(err, v8Flags) {
|
||||
}
|
||||
});
|
||||
});
|
||||
process.on("SIGINT", () => {
|
||||
proc.kill("SIGINT");
|
||||
process.exit(1);
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user