From 3d9a92787b5db07f2438b9f1b71e2b16a77482f5 Mon Sep 17 00:00:00 2001 From: deepend Date: Fri, 13 Feb 2026 20:44:39 -0700 Subject: [PATCH] =?UTF-8?q?Fixed=20IsccPath=20values=20in=20win32/zoitecha?= =?UTF-8?q?t.props=20by=20removing=20embedded=20quotes=20from=20the=20defa?= =?UTF-8?q?ult=20Program=20Files=20paths,=20so=20the=20path=20is=20stored?= =?UTF-8?q?=20raw=20and=20can=20be=20quoted=20exactly=20once=20at=20invoca?= =?UTF-8?q?tion=20time.=20This=20addresses=20the=20=E2=80=9Ccannot=20find?= =?UTF-8?q?=20iscc.exe=E2=80=9D=20behavior=20caused=20by=20double/nested?= =?UTF-8?q?=20quoting.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- win32/zoitechat.props | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/win32/zoitechat.props b/win32/zoitechat.props index 0de6b941..26be52b9 100644 --- a/win32/zoitechat.props +++ b/win32/zoitechat.props @@ -106,11 +106,11 @@ $(ZoiteChatBuild)\$(PlatformName)\lib\ $(ZoiteChatBuild)\$(PlatformName)\pdb\ $(ZoiteChatBuild)\$(PlatformName)\rel\ - $(ZOITECHAT_ISCC_PATH) - "$(ProgramFiles)\Inno Setup 6\iscc.exe" - "$(ProgramFiles(x86))\Inno Setup 6\iscc.exe" - "$(ProgramW6432)\Inno Setup 6\iscc.exe" - "$(ProgramFiles)\Inno Setup 6\iscc.exe" + $(ZOITECHAT_ISCC_PATH)␊ + $(ProgramFiles)\Inno Setup 6\iscc.exe + $(ProgramFiles(x86))\Inno Setup 6\iscc.exe + $(ProgramW6432)\Inno Setup 6\iscc.exe + $(ProgramFiles)\Inno Setup 6\iscc.exe