Skip to content

Commit

Permalink
ci: test/e2e/standard: fix kill_child_processes() (#1226)
Browse files Browse the repository at this point in the history
Co-authored-by: alxndrsn <alxndrsn>
  • Loading branch information
alxndrsn authored Oct 22, 2024
1 parent d2054f4 commit 389967b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/standard/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ node ./lib/bin/cli.js user-promote -u "$userEmail" && log "User promoted."

kill_child_processes() {
log "Killing child processes..."
kill -- -$$
kill -- -$$ || true
}
trap kill_child_processes EXIT

Expand Down

0 comments on commit 389967b

Please sign in to comment.