Skip to content

Commit

Permalink
Merge pull request #596 from Inxton/595-nightly-should-run-with-all-l…
Browse files Browse the repository at this point in the history
…ibs-evaluation-at-the-end

nightly should run with all libs, evaluation at the end
  • Loading branch information
PTKu authored Feb 11, 2025
2 parents 09ca839 + c19db42 commit 91df051
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions cake/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -371,15 +371,17 @@ public override void Run(BuildContext context)
// Build and start HMI
AppsRunTaskHelpers.BuildAndStartHmi(context, appFile, appName, logFilePath, ref summaryResult);

if (!summaryResult)
{
context.Log.Error($"App run failed for some of the applications.");
context.Log.Error($"Good luck with finding out the reason :-).");
Environment.Exit(1);
}

}
}
}

if (!summaryResult)
{
context.Log.Error($"App run failed for some of the applications.");
context.Log.Error($"Good luck with finding out the reason :-).");
Environment.Exit(1);
}
}
else
{
Expand Down

0 comments on commit 91df051

Please # to comment.