From 857c947b30eb39e68ad5275175a7ac8192ab9bde Mon Sep 17 00:00:00 2001 From: letur Date: Sun, 13 Sep 2026 06:42:51 +0200 Subject: [PATCH] chore: no-mistakes review - fix(queue): write PowerShell result base64 with Console.Out to avoid wrap truncation --- scripts/lib/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/lib/queue.py b/scripts/lib/queue.py index 738107d..dab84cd 100644 --- a/scripts/lib/queue.py +++ b/scripts/lib/queue.py @@ -2512,7 +2512,7 @@ def read(self, src: str) -> str: "$ErrorActionPreference = 'Stop'\n" f"if (-not (Test-Path -LiteralPath {quoted} -PathType Leaf)) " "{ Write-Output 'fleet-no-file'; exit 1 }\n" - f"[Convert]::ToBase64String([IO.File]::ReadAllBytes({quoted}))\n" + f"[Console]::Out.Write([Convert]::ToBase64String([IO.File]::ReadAllBytes({quoted})))\n" ) def decode(self, stdout: str) -> str | None: