From e639ce29b97a2a8dfa07a31b5a5afd3e0ed0cfee Mon Sep 17 00:00:00 2001 From: "Dave Musicant (home machine)" Date: Sun, 4 Dec 2022 09:31:58 -0600 Subject: [PATCH] see if a kill -9 does the trick on Mac --- othertests/startup-shutdown.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/othertests/startup-shutdown.bash b/othertests/startup-shutdown.bash index a699365..29b2b9b 100755 --- a/othertests/startup-shutdown.bash +++ b/othertests/startup-shutdown.bash @@ -29,7 +29,7 @@ teardown() { # Make sure gitwatch script gets killed if script stopped background # Must kill the entire tree of processes generated - pkill -15 -P "$GITWATCH_PID" + pkill -9 -P "$GITWATCH_PID" echo '# Teardown complete' >&3 }