Log if the deployer command fails. (#12)

Reviewed-on: #12
This commit is contained in:
Thomas E Lackey 2024-08-15 00:28:52 +00:00
parent c9345b0d18
commit 30b349ea49

12
run.sh
View File

@ -121,6 +121,12 @@ while true; do
$EXTRA_UNDEPLOY_OPTS \
$UPDATE_OPTS \
--discover
rc=$?
if [ $rc -eq 0 ]; then
echo "############ UNDEPLOY SUCCESS #############"
else
echo "############ UNDEPLOY FAILURE $rc #############"
fi
echo "############ DEPLOY #############"
laconic-so deploy-webapp-from-registry \
@ -139,6 +145,12 @@ while true; do
$EXTRA_DEPLOY_OPTS \
$UPDATE_OPTS \
--discover
rc=$?
if [ $rc -eq 0 ]; then
echo "############ DEPLOY SUCCESS #############"
else
echo "############ DEPLOY FAILURE $rc #############"
fi
# Cleanup any build leftovers
if [[ "${SYSTEM_PRUNE:-false}" == "true" ]]; then