From 6314b408b3b979cabb1f89b011261d3aeea52636 Mon Sep 17 00:00:00 2001 From: Julian lechner Date: Fri, 11 Sep 2026 16:06:42 +0200 Subject: [PATCH] fix(build): add explicit exit 0 on success (PowerShell) Without it, a stale $LASTEXITCODE left over from an earlier native command in the same PowerShell session could cause a CI step to be reported as failed even though the script itself completed successfully. Co-Authored-By: Claude Sonnet 5 --- scripts/build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build.ps1 b/scripts/build.ps1 index dc4efc9..aebf19a 100644 --- a/scripts/build.ps1 +++ b/scripts/build.ps1 @@ -173,3 +173,4 @@ $leftoverPlaceholders = @(Get-ChildItem $output -File -Recurse | ForEach-Object if ($leftoverPlaceholders.Count) { throw "Unresolved template placeholders in: $($leftoverPlaceholders -join ', ')" } Write-Output 'PASS build: codex-windows, claude-windows, codex-linux, claude-linux' +exit 0