Skip to content

Commit 8086b77

Browse files
author
Paul Baker
committed
Adjusting script to hide bad output from the wait command.
1 parent e838682 commit 8086b77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-with-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ declare -a ubuntu_versions=("14.04" "16.04" "18.04" "18.10" "19.04")
77
function wait_for_jobs()
88
{
99
for job_pid in $(jobs -p); do
10-
wait "${job_pid}" || true
10+
wait "${job_pid}" 2>/dev/null || true
1111
done
1212
}
1313
function build_containers()

0 commit comments

Comments
 (0)