From 712bd4e74e1eae9b5ad2870267f25d025281c635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Forment?= Date: Wed, 18 Mar 2026 13:35:17 +0100 Subject: [PATCH] Feat: fix windows build script --- scripts/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.py b/scripts/build.py index 52221a7..17884a5 100755 --- a/scripts/build.py +++ b/scripts/build.py @@ -793,7 +793,7 @@ def _print_platform_log(r: PlatformResult, verbose: bool = False) -> None: lines = [f" ... ({len(r.log_lines) - _FAILURE_LOG_TAIL} lines omitted, use --verbose for full output)"] + lines[-_FAILURE_LOG_TAIL:] console.print(Panel( - "\n".join(lines) if lines else "[dim]no output[/]", + "\n".join(escape(l) for l in lines) if lines else "[dim]no output[/]", title=f"{r.platform.label} [{status}] {r.elapsed:.1f}s", border_style=style, ))