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
+1 -1
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