From 181d2a73cdae52fe0d62c9b3c3c6d7a313a071c5 Mon Sep 17 00:00:00 2001 From: Joe Cooper Date: Thu, 14 Sep 2017 01:13:08 -0500 Subject: [PATCH] I changed my mind. No unnecessary chatter. --- slib.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/slib.sh b/slib.sh index faea550..2bd41b1 100644 --- a/slib.sh +++ b/slib.sh @@ -11,14 +11,12 @@ 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 - echo "Cleaning up..." for pid in $allpids; do kill "$pid" 1>/dev/null 2>&1 done fi tput rc tput cnorm - echo return 1 } # This tries to catch any exit, whether normal or forced (e.g. Ctrl-C)