Allow killing leftover processes to fail

This commit is contained in:
Chris Kuehl 2015-09-03 15:01:34 -07:00
parent 427bdd25ba
commit 508b8e29d2

View file

@ -29,4 +29,5 @@ if [ "$child_count" -ne "$after_count" ]; then
exit 1
fi
xargs kill -9 <<< "$pids"
echo 'Killing any leftover processes.'
xargs kill -9 <<< "$pids" || true