in eng/update-dependencies/Program.cs [31:46]
private static async Task ExecuteAsync(Options options)
{
try
{
Trace.Listeners.Add(new TextWriterTraceListener(Console.Out));
await new DependencyUpdater(options).ExecuteAsync();
}
catch (Exception e)
{
Console.Error.WriteLine($"Failed to update dependencies:{Environment.NewLine}{e.ToString()}");
Environment.Exit(1);
}
Environment.Exit(0);
}