claude-evolve 1.7.26 → 1.7.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/claude-evolve-worker +4 -1
- package/package.json +1 -1
package/bin/claude-evolve-worker
CHANGED
|
@@ -593,10 +593,13 @@ with EvolutionCSV('$FULL_CSV_PATH') as csv:
|
|
|
593
593
|
|
|
594
594
|
# Set current candidate for cleanup
|
|
595
595
|
CURRENT_CANDIDATE_ID="$candidate_id"
|
|
596
|
-
|
|
596
|
+
|
|
597
597
|
# Process the candidate and capture exit code
|
|
598
|
+
# Use 'set +e' temporarily to prevent script exit on non-zero return
|
|
599
|
+
set +e
|
|
598
600
|
process_candidate "$candidate_id" "$parent_id" "$description"
|
|
599
601
|
process_exit_code=$?
|
|
602
|
+
set -e
|
|
600
603
|
|
|
601
604
|
if [[ $process_exit_code -eq 0 ]]; then
|
|
602
605
|
echo "[WORKER-$$] Successfully processed $candidate_id"
|