summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 126bb75b1..a7c277e4c 100644
--- a/Makefile
+++ b/Makefile
@@ -308,7 +308,12 @@ stop-client:
done
@for PID in $$(ps -ef | grep [n]pm | awk '{ print $$2 }'); do \
- echo stopping watchify $$PID; \
+ echo stopping client $$PID; \
+ kill $$PID; \
+ done
+
+ @for PID in $$(ps -ef | grep [w]atchify | awk '{ print $$2 }'); do \
+ echo stopping client $$PID; \
kill $$PID; \
done