84081a93b7
Problem: - Lines 435, 447, 457: integer expression expected errors - convert_to_bytes() returns empty string when input is empty - Bash arithmetic fails on empty strings: [ "" -lt 128 ] Fix: - Added empty checks before all numeric comparisons - Pattern: [ -n "$var" ] && [ "$var" -lt value ] - Applied to lines 435, 447, 457 Lines fixed: - 435: post_bytes vs upload_bytes comparison - 447: memory_bytes vs 128MB comparison - 457: error_count > 0 comparison Result: - No more integer expression errors - Script completes domain analysis successfully