From 87ec58f9d3e8eaf903625b1b15705057e74b043f Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Mon, 16 Feb 2026 02:52:46 -0700 Subject: [PATCH] Fix component selection for Python in installer script --- win32/installer/zoitechat.iss.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/win32/installer/zoitechat.iss.tt b/win32/installer/zoitechat.iss.tt index 0e1362e7..b4bb520a 100644 --- a/win32/installer/zoitechat.iss.tt +++ b/win32/installer/zoitechat.iss.tt @@ -325,8 +325,8 @@ begin idpAddFile(PERL, ExpandConstant('{tmp}\perl.msi')) end; - if IsComponentSelected('langs\python\python3') and not CheckDLL('python314.dll') then - idpAddFile(PY3, ExpandConstant('{tmp}\python.exe')); + if IsComponentSelected('langs\python') and not CheckDLL('python314.dll') then + idpAddFile(PY3, ExpandConstant('{tmp}\python.exe')); end; end; end;