ci: fix bash increment syntax

This commit is contained in:
Matt Sturgeon 2025-05-27 18:20:30 +01:00
parent 60438d8017
commit 67ca549ff5
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -77,9 +77,9 @@ runs:
--print-build-logs \
--log-format raw
then
((ok++))
$((ok++))
else
((error++))
$((error++))
if [ -z "$keep_going_flag" ]; then
exit 1
fi