Skip to content

Commit

Permalink
redirect kill to null
Browse files Browse the repository at this point in the history
  • Loading branch information
swelljoe committed Jun 26, 2017
1 parent b76a199 commit 85488c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion slib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cleanup () {
# Make super duper sure we reap all the spinners
# This is ridiculous, and I still don't know why spinners stick around.
if [ ! -z "$allpids" ]; then
kill "$allpids"
kill "$allpids" &>/dev/null
fi
}
trap cleanup INT EXIT QUIT TERM
Expand Down

0 comments on commit 85488c3

Please sign in to comment.