tools(render): self-gate - list screenshots recursively, no plugins in gate sessions

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
This commit is contained in:
Erik 2026-09-02 23:16:31 +02:00
parent b7e6ec7769
commit ea546f381b
2 changed files with 2 additions and 1 deletions

View file

@ -67,5 +67,5 @@ if (-not $proc.WaitForExit($TimeoutSeconds * 1000)) {
}
}
Write-Host "client exit code: $($proc.ExitCode)"
Get-ChildItem -LiteralPath $artifacts -Filter '*.png' | ForEach-Object { Write-Host (" {0} {1:N0} bytes" -f $_.Name, $_.Length) }
Get-ChildItem -LiteralPath $artifacts -Recurse -Filter '*.png' | ForEach-Object { Write-Host (" {0} {1:N0} bytes" -f $_.FullName, $_.Length) }
Write-Host "log: $clientLog"