master
bel 2023-03-29 18:57:54 -06:00
parent c7f8016a92
commit 8631625b0e
1 changed files with 3 additions and 1 deletions

View File

@ -12,7 +12,9 @@ main() {
}
cleanup() {
kill -9 $(jobs -p)
local jobs_to_clean="$(jobs -p)"
log killing $jobs_to_clean
kill -9 $jobs_to_clean
}
log() {