Merge pull request 'fix: fitness.sh individual-scoring path still silences errors (#766)' (#772) from fix/issue-766 into master
This commit is contained in:
commit
5837af0ad7
2 changed files with 2 additions and 1 deletions
1
STATE.md
1
STATE.md
|
|
@ -28,3 +28,4 @@
|
|||
- [2026-03-14] evolve.sh silences all batch-eval errors with 2>/dev/null (#749)
|
||||
- [2026-03-14] evolution-daemon.sh — perpetual evolution loop on DO box (#748)
|
||||
- [2026-03-14] No mainnet VWAP bootstrap runbook (#728)
|
||||
- [2026-03-14] fitness.sh individual-scoring path still silences errors (#766)
|
||||
|
|
|
|||
|
|
@ -516,7 +516,7 @@ PYEOF
|
|||
) || SCORE=0
|
||||
else
|
||||
# Anvil mode (or revm fallback): score candidate individually.
|
||||
SCORE=$(bash "$FITNESS_SH" "$CAND_FILE" 2>/dev/null) || FITNESS_EC=$?
|
||||
SCORE=$(bash "$FITNESS_SH" "$CAND_FILE") || FITNESS_EC=$?
|
||||
|
||||
# Exit 2 = infrastructure error (Anvil down, missing tools): abort immediately.
|
||||
if [ "$FITNESS_EC" -eq 2 ]; then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue