Make error message more visible

This commit is contained in:
Benoit Marty 2025-10-10 09:45:10 +02:00
parent d06cea1d17
commit 81787208c0

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