From ab409308122f60413306799306787c44f083ae3a Mon Sep 17 00:00:00 2001 From: openhands Date: Sat, 14 Mar 2026 19:07:17 +0000 Subject: [PATCH] fix: fitness.sh individual-scoring path still silences errors (#766) --- tools/push3-evolution/evolve.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/push3-evolution/evolve.sh b/tools/push3-evolution/evolve.sh index b76490c..5d26df4 100755 --- a/tools/push3-evolution/evolve.sh +++ b/tools/push3-evolution/evolve.sh @@ -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