claude-evolve 1.0.14 → 1.0.15
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-run +2 -2
- package/package.json +1 -1
package/bin/claude-evolve-run
CHANGED
|
@@ -144,8 +144,8 @@ echo "[INFO] Processing candidate ID: $id"
|
|
|
144
144
|
echo "[INFO] Description: $description"
|
|
145
145
|
echo "[INFO] Based on ID: $based_on_id"
|
|
146
146
|
|
|
147
|
-
# Set interrupt handler
|
|
148
|
-
trap '
|
|
147
|
+
# Set interrupt handler - just exit without updating CSV status
|
|
148
|
+
trap 'echo "[INFO] Evolution interrupted"; exit 130' INT
|
|
149
149
|
|
|
150
150
|
# Mark as running
|
|
151
151
|
update_csv_row "$row_num" "" "running"
|