fix stale coverage/floor.txt reference in gate script

The "consider bumping" hint pointed to `coverage/floor.txt`, but
the floor moved to `pubspec.yaml`'s `coverage_floor:` key when
the gate was first folded together. Updates the message to match
the actual source.

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-05-07 21:05:16 +02:00
co-authored by Claude
parent a6eca2561b
commit 2432207e5b
2 changed files with 209 additions and 202 deletions
+1 -1
View File
@@ -44,7 +44,7 @@ if (( measured_int < floor )); then
fi
if (( measured_int > floor )); then
echo "==> coverage gate OK: ${measured}% (floor ${floor}%) — ${measured_int}% available; consider bumping coverage/floor.txt to ${measured_int}"
echo "==> coverage gate OK: ${measured}% (floor ${floor}%) — ${measured_int}% available; consider bumping pubspec.yaml coverage_floor: to ${measured_int}"
else
echo "==> coverage gate OK: ${measured}% (floor ${floor}%)"
fi