From 58f4dccc02928b82361fafa80eb076c2b3027797 Mon Sep 17 00:00:00 2001 From: enricobuehler Date: Mon, 22 Jun 2026 20:21:33 +0200 Subject: [PATCH] =?UTF-8?q?fix(windows-host):=20ISCC=20[Code]=20=E2=80=94?= =?UTF-8?q?=20don't=20put=20{tmp}=20inside=20a=20Pascal=20comment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ISCC aborted compiling the installer at the web-console [Code] section: a comment `{ ... {tmp} is auto-cleaned. }` — Pascal `{ }` comments don't nest, so the `}` in `{tmp}` closed the comment early and `is auto-cleaned. }` parsed as code ("Identifier expected"). Reword to drop the brace. (All other {app}/{tmp} uses are `;` line-comments or code strings, which are fine.) Co-Authored-By: Claude Opus 4.8 (1M context) --- packaging/windows/punktfunk-host.iss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/windows/punktfunk-host.iss b/packaging/windows/punktfunk-host.iss index e76d4f5..fdaec6d 100644 --- a/packaging/windows/punktfunk-host.iss +++ b/packaging/windows/punktfunk-host.iss @@ -267,7 +267,7 @@ begin begin StopHostServiceAndWait; #ifdef WithWeb - { Stash the chosen password for web-setup.ps1 (fresh install only); {tmp} is auto-cleaned. } + { Stash the chosen password for web-setup.ps1 (fresh install only); the temp copy is auto-cleaned. } if FreshWebInstall then SaveStringToFile(ExpandConstant('{tmp}\webpw.txt'), Trim(WebPwPage.Values[0]), False); #endif