Comment 82 for bug 1690980

Revision history for this message
Julian Andres Klode (juliank) wrote :

A work around would be to invoke subprocesses using:

_term() {
  kill -TERM "$child" 2>/dev/null
}

trap _term SIGTERM

run() {
    "$@" &
    child="$!"
    wait "$child"
}