fix(perception): keep worker preflight output scalar

This commit is contained in:
DCCONSTRUCTIONS
2026-08-05 15:59:57 +03:00
parent 7756310bdf
commit 8e161a197f
+1 -1
View File
@@ -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
)