clipmenud: Fix killing background jobs when there are multiple

`jobs -p' should be read into an array, as it might contain more than
one job.

[cdown: squash, massage changelog, remove space between local/readarray]
This commit is contained in:
Matthew White 2021-11-17 22:27:51 +00:00 committed by Chris Down
parent 775adccfb4
commit bc35b6f44a

View file

@ -88,12 +88,12 @@ kill_background_jobs() {
# While we usually _are_, there are no guarantees that we're the process
# group leader. As such, all we can do is look at the pending jobs. Bash
# avoids a subshell here, so the job list is in the right shell.
local bg
bg=$(jobs -p)
local -a bg
readarray -t bg < <(jobs -p)
# Don't log `kill' failures, since with KillMode=control-group, we're
# racing with init.
[[ $bg ]] && kill -- "$bg" 2>/dev/null
(( ${#bg[@]} )) && kill -- "${bg[@]}" 2>/dev/null
}
if [[ $1 == --help ]] || [[ $1 == -h ]]; then