From d7e88da0e5930fc5aec4b7916c6b4852be0f93ce Mon Sep 17 00:00:00 2001 From: Jason Lu <151680919+Nottlespike@users.noreply.github.com> Date: Mon, 25 May 2026 07:53:48 -0700 Subject: [PATCH] build(macos): quote SHOULD_SIGN env expansion in install script (#5185) --- cmake/packaging/macos.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/packaging/macos.cmake b/cmake/packaging/macos.cmake index b240f3838..623541043 100644 --- a/cmake/packaging/macos.cmake +++ b/cmake/packaging/macos.cmake @@ -60,7 +60,7 @@ else() endif() # SHOULD_SIGN is set only when publish_release is true or when manually building - if(\$ENV{SHOULD_SIGN} STREQUAL \"true\") + if(\"\$ENV{SHOULD_SIGN}\" STREQUAL \"true\") # Sign anything inside Contents/Frameworks set(_fw_dir \"\${_app}/Contents/Frameworks\") if(EXISTS \"\${_fw_dir}\")