more debugging

This commit is contained in:
Matt Sturgeon 2025-05-27 18:38:10 +01:00
parent 39abfc7c1a
commit 9caffee9b0
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -79,10 +79,13 @@ runs:
then then
echo "incrementing ok from $ok" echo "incrementing ok from $ok"
(( ok++ )) (( ok++ ))
echo "incremented ok to $ok"
else else
echo "incrementing error from $error" echo "incrementing error from $error"
(( error++ )) (( error++ ))
echo "incremented error to $error"
if [ -z "$keep_going_flag" ]; then if [ -z "$keep_going_flag" ]; then
echo "Failing fast!"
exit 1 exit 1
fi fi
fi fi