commit: f3fb6696b11385be2646a45ee05670618500244f
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 2 16:27:08 2018 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Fri Mar 2 16:27:08 2018 +0000
URL: https://gitweb.gentoo.org/proj/releng.git/commit/?id=f3fb6696
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
}