diff --git a/tools/compose/check_stability.sh b/tools/compose/check_stability.sh index c965c787cd..06d76ca0ae 100755 --- a/tools/compose/check_stability.sh +++ b/tools/compose/check_stability.sh @@ -17,7 +17,7 @@ find . -type f -name "*-classes.txt" | while read -r file; do # echo "Processing $file" # Check that there is no line containing "unstable class .*State {" if grep -E 'unstable class .*State \{' "$file"; then - echo "Found unstable State class in $file" + echo "❌ ERROR: Found unstable State class in $file" exit 1 fi done