Here is the fix for people who can’t open the github commits:
2 files to fix BgScriptReader.cs & CheckForHacks.cs
Engine/Source/Programs/AutomationTool/BuildGraph/BgScriptReader.cs
line 1640, replace
report.NotifyUsers.UnionWith(users);
with
if (users != null)
{
report.NotifyUsers.UnionWith(users);
}
Engine/Source/Programs/AutomationTool/Scripts/CheckForHacks.cs
line 87, replace
Logger.LogInformation("Scanning files...", FilesToCheck.Count);
with
Logger.LogInformation("Scanning files... [{Arg0}]", FilesToCheck.Count);
hope that helps!