From f986441d315531f3449f22d6110238798165b211 Mon Sep 17 00:00:00 2001 From: Pierre Chalamet Date: Sat, 17 Jan 2026 22:38:50 +0100 Subject: [PATCH] fix status computation --- src/Terrabuild/Core/Runner.fs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Terrabuild/Core/Runner.fs b/src/Terrabuild/Core/Runner.fs index fba97dab..f6914654 100644 --- a/src/Terrabuild/Core/Runner.fs +++ b/src/Terrabuild/Core/Runner.fs @@ -510,7 +510,7 @@ let run (options: ConfigOptions.Options) (cache: Cache.ICache) (api: Contracts.I |> Set.forall (fun nodeId -> match nodeStatus |> Map.tryFind nodeId with | Some info -> info.Status.IsSuccess - | _ -> true) + | _ -> false) let buildInfo = { Summary.Commit = headCommit.Sha