From 6bf8cd84f2bb0f68b63f5b390e378497ca4394b3 Mon Sep 17 00:00:00 2001 From: frankbria Date: Wed, 27 Aug 2025 15:58:02 -0700 Subject: [PATCH] Fix loop_count increment syntax for bash compatibility --- ralph_loop.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ralph_loop.sh b/ralph_loop.sh index 80a2e54..889e135 100755 --- a/ralph_loop.sh +++ b/ralph_loop.sh @@ -345,7 +345,7 @@ main() { log_status "INFO" "DEBUG: About to enter while loop, loop_count=$loop_count" while true; do - ((loop_count++)) + loop_count=$((loop_count + 1)) log_status "INFO" "DEBUG: Successfully incremented loop_count to $loop_count" log_status "INFO" "Loop #$loop_count - calling init_call_tracking..." init_call_tracking