Skip to content

Commit

Permalink
run: ignore kill trap fails
Browse files Browse the repository at this point in the history
  • Loading branch information
ignoramous authored Feb 20, 2024
1 parent 7c1ef62 commit f247f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ cleanup() {
jobs -p > jobfile
j=$(cat jobfile)
echo "kill... $j"
kill -INT $j
kill -INT $j || true
# does not work... jobs -p | xargs -r kill -9
rm jobfile
}
Expand Down

0 comments on commit f247f75

Please sign in to comment.