Fix: right way to kill process

This commit is contained in:
2015-08-20 13:31:38 +00:00
parent f91874d496
commit 0780cd4c71

View File

@@ -26,6 +26,6 @@
"scripts": { "scripts": {
"test": "NODE_ENV=test mocha", "test": "NODE_ENV=test mocha",
"start": "app.js", "start": "app.js",
"stop": "pkill --signal SIGINT CloudBudget" "stop": "pkill -SIGINT CloudBudget"
} }
} }