Skip to content

Commit

Permalink
minor fix: don't exit script until airspy_adsb has exited (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf committed Apr 2, 2024
1 parent 96cda2e commit ab83cb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rootfs/etc/s6-overlay/scripts/airspy_adsb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#shellcheck shell=bash disable=SC1091

source /scripts/common
trap 'pkill -P $$ || true; exit 0' SIGTERM SIGINT SIGHUP SIGQUIT
trap 'pkill -P $$' SIGTERM SIGINT SIGHUP SIGQUIT

s6wrap=(s6wrap --quiet --prepend="$(basename "$0")" --timestamps --args)

Expand Down

0 comments on commit ab83cb3

Please sign in to comment.