Skip to content

Commit 91df051

Browse files
authored
Merge pull request #596 from Inxton/595-nightly-should-run-with-all-libs-evaluation-at-the-end
nightly should run with all libs, evaluation at the end
2 parents 09ca839 + c19db42 commit 91df051

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

cake/Program.cs

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -371,15 +371,17 @@ public override void Run(BuildContext context)
371371
// Build and start HMI
372372
AppsRunTaskHelpers.BuildAndStartHmi(context, appFile, appName, logFilePath, ref summaryResult);
373373

374-
if (!summaryResult)
375-
{
376-
context.Log.Error($"App run failed for some of the applications.");
377-
context.Log.Error($"Good luck with finding out the reason :-).");
378-
Environment.Exit(1);
379-
}
374+
380375
}
381376
}
382377
}
378+
379+
if (!summaryResult)
380+
{
381+
context.Log.Error($"App run failed for some of the applications.");
382+
context.Log.Error($"Good luck with finding out the reason :-).");
383+
Environment.Exit(1);
384+
}
383385
}
384386
else
385387
{

0 commit comments

Comments
 (0)