File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -318,9 +318,6 @@ echo ""
318318# Read the entire file content
319319FILE_CONTENT=$( cat " $CONFIG_FILE_ABS " )
320320
321- echo " DEBUG: File content read successfully" >&2
322- echo " DEBUG: File has $( echo " $FILE_CONTENT " | wc -l) lines" >&2
323-
324321# Parse the config file and split into sections with line numbers
325322declare -a chart_sections=()
326323declare -a section_start_lines=()
@@ -363,20 +360,16 @@ if [ ${#chart_sections[@]} -eq 0 ]; then
363360fi
364361
365362total_charts= ${# chart_sections[@]}
366- echo " DEBUG: Parsed $total_charts chart section(s)" > & 2
367363info " Found $total_charts chart(s) to check"
368364echo " "
369365
370366# Track updates
371367declare -a updates= ()
372368updated_content= " $FILE_CONTENT "
373369
374- echo " DEBUG: Starting chart processing loop" > & 2
375-
376370# Process each section
377371chart_num= 1
378372for i in " ${! chart_sections[@]} " ; do
379- echo " DEBUG: Processing chart $chart_num " >&2
380373 chart_section=" ${chart_sections[$i]} "
381374
382375 # Skip empty sections
You can’t perform that action at this time.
0 commit comments