From f3fb6696b11385be2646a45ee05670618500244f Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Fri, 2 Mar 2018 11:27:08 -0500 Subject: [PATCH] tools-systemd: don't do parallel runs --- tools-systemd/run.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tools-systemd/run.sh b/tools-systemd/run.sh index 4535883c..9066d03d 100755 --- a/tools-systemd/run.sh +++ b/tools-systemd/run.sh @@ -47,10 +47,8 @@ main() { # The parallelization `( do_stages ... ) &` doesn't work here # if catalyst is using snapcache, bug #519656 for arch in amd64 i686; do - ( - do_stages ${arch} - [[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log - ) & + do_stages ${arch} + [[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log done }