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: