tools-systemd: do parallel runs of amd64 and i686

This commit is contained in:
Anthony G. Basile 2016-03-09 05:02:33 -05:00
parent 8d7e8ae3a3
commit 151b14d68f

View file

@ -40,8 +40,10 @@ 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
}