From 8525138594b882aaa9126485a69642f5e2ade3da Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 15 Nov 2025 22:31:08 -0600 Subject: [PATCH] test --- cmake/modules/envtoh.cmake | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cmake/modules/envtoh.cmake b/cmake/modules/envtoh.cmake index ee65e97..62c506d 100644 --- a/cmake/modules/envtoh.cmake +++ b/cmake/modules/envtoh.cmake @@ -20,10 +20,6 @@ foreach(line IN LISTS ENV_LINES) continue() endif() - # Trim whitespace only for non-empty, non-comment lines - string(REGEX REPLACE "^[ \t]*" "" line "${line}") - string(REGEX REPLACE "[ \t]*$" "" line "${line}") - # Expect KEY=VALUE (allow spaces around '=') if(NOT line MATCHES "^[A-Za-z_][A-Za-z0-9_]*[ \t]*=[ \t]*") message(WARNING "Skipping invalid line in ${ENV_FILE}: '${line}'")