tools-musl/run.sh: restore code accidentally removed

This commit is contained in:
Anthony G. Basile 2016-06-04 12:09:00 -04:00
parent 15af59a809
commit 1ae8501b23

View file

@ -52,6 +52,17 @@ main() {
prepare_confs ${arch} ${flavor}
done
done
# The parallelization `( do_stages ... ) &` doesn't work here
# if catalyst is using snapcache, bug #519656
for arch in amd64 i686; do
for flavor in hardened vanilla; do
(
do_stages ${arch} ${flavor}
[[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
) &
done
done
}
main $1 &