Make error message more visible

This commit is contained in:
Benoit Marty
2025-10-10 09:45:10 +02:00
parent 3b39074144
commit b282e310c3

View File

@@ -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