Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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