We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2265569 commit 24b8969Copy full SHA for 24b8969
ralph_loop.sh
@@ -1599,7 +1599,7 @@ execute_claude_code() {
1599
# Extract session ID from stream-json output for session continuity
1600
# Stream-json format has session_id in the final "result" type message
1601
# Keep full stream output in _stream.log, extract session data separately
1602
- if [[ "$CLAUDE_USE_CONTINUE" == "true" && -f "$output_file" ]]; then
+ if [[ -f "$output_file" ]]; then
1603
# Preserve full stream output for analysis (don't overwrite output_file)
1604
local stream_output_file="${output_file%.log}_stream.log"
1605
cp "$output_file" "$stream_output_file"
0 commit comments