Revert "Scripts: Check exit status of background process"
This reverts commit 3f106bef72.
This commit is contained in:
committed by
Gustas
parent
0c8ae195ae
commit
69949f9d53
@@ -281,14 +281,9 @@ fi
|
|||||||
|
|
||||||
if [ -n "${MACOS_DEVELOPER_USERNAME}" ] && [ -n "${MACOS_DEVELOPER_PASSWORD}" ]; then
|
if [ -n "${MACOS_DEVELOPER_USERNAME}" ] && [ -n "${MACOS_DEVELOPER_PASSWORD}" ]; then
|
||||||
# Parallelize processing
|
# Parallelize processing
|
||||||
(notarize_package "build.dmg") || exit 1 &
|
(notarize_package "build.dmg") &
|
||||||
(notarize_package "build-mono.dmg") || exit 1 &
|
(notarize_package "build-mono.dmg") &
|
||||||
while wait -n; rc=$?; [ "${rc}" != 127 ]; do
|
wait
|
||||||
if [ "${rc}" != 0 ]; then
|
|
||||||
wait
|
|
||||||
exit "${rc}"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
finalize_package "standard" "build.dmg" "${OUTPUTDIR}/OpenRA-${TAG}.dmg"
|
finalize_package "standard" "build.dmg" "${OUTPUTDIR}/OpenRA-${TAG}.dmg"
|
||||||
|
|||||||
Reference in New Issue
Block a user