From 8e161a197f1b6526a4ec79931297310820987cc9 Mon Sep 17 00:00:00 2001 From: DCCONSTRUCTIONS Date: Wed, 5 Aug 2026 15:59:57 +0300 Subject: [PATCH] fix(perception): keep worker preflight output scalar --- scripts/Invoke-M4DetectorShadow.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Invoke-M4DetectorShadow.ps1 b/scripts/Invoke-M4DetectorShadow.ps1 index 7d36798..5752f60 100644 --- a/scripts/Invoke-M4DetectorShadow.ps1 +++ b/scripts/Invoke-M4DetectorShadow.ps1 @@ -61,7 +61,7 @@ function Convert-ToDockerPath([string]$Path) { function Assert-FreeSpace([string]$Phase) { $free = [int64](Get-PSDrive -Name D).Free $floor = [int64]$FreeGiBFloor * 1GB - Write-Output ( + Write-Host ( "DISK_GUARD PHASE={0} DRIVE=D FREE_BYTES={1} FREE_GIB={2} FLOOR_GIB={3}" -f $Phase, $free, [math]::Round($free / 1GB, 3), $FreeGiBFloor )