1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

Fixed package.json

This commit is contained in:
Ylian Saint-Hilaire 2020-03-11 01:31:29 -07:00
parent bfb0c9c914
commit a1d18692f2
2 changed files with 2 additions and 8 deletions

View file

@ -2424,7 +2424,7 @@ function mainStart() {
InstallModules(modules, function () { meshserver = CreateMeshCentralServer(config, args); meshserver.Start(); });
// On exit, also terminate the child process if applicable
process.on("exit", function () { if (childProcess) { childProcess.kill(); childProcess = null; } });
process.on('exit', function () { if (childProcess) { childProcess.kill(); childProcess = null; } });
// If our parent exits, we also exit
if (args.launch) {