Feat: fix windows build script

This commit is contained in:
2026-03-18 13:35:17 +01:00
parent 144c2487c2
commit 712bd4e74e

View File

@@ -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:] lines = [f" ... ({len(r.log_lines) - _FAILURE_LOG_TAIL} lines omitted, use --verbose for full output)"] + lines[-_FAILURE_LOG_TAIL:]
console.print(Panel( 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", title=f"{r.platform.label} [{status}] {r.elapsed:.1f}s",
border_style=style, border_style=style,
)) ))