ci/actions/build: check error numerically

This commit is contained in:
Matt Sturgeon 2025-05-27 17:39:18 +01:00
parent b2a158bf32
commit bf9084246a
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -92,6 +92,6 @@ runs:
echo "$ok build groups succeeded"
echo "$error build groups failed"
) >&2
if [ $error ]; then
if [ "$error" -gt 0 ]; then
exit 1
fi