Correctly kill process

This commit is contained in:
Andrew Stewart 2014-04-14 15:11:07 -07:00
parent fcd771cadc
commit d8152852a0
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ var Cylon = (function() {
process.on("SIGINT", function() {
Cylon.getInstance().halt();
process.kill();
process.kill(process.pid);
});
}