We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812dfb9 commit 02bb671Copy full SHA for 02bb671
eng/helix/content/RunTests/TestRunner.cs
@@ -141,7 +141,8 @@ await ProcessUtil.RunAsync($"{Options.DotnetRoot}/dotnet",
141
$"tool install dotnet-ef --global --version {Options.EfVersion}",
142
environmentVariables: EnvironmentVariables,
143
outputDataReceived: Console.WriteLine,
144
- errorDataReceived: Console.Error.WriteLine);
+ errorDataReceived: Console.Error.WriteLine,
145
+ throwOnError: false); // EF tool is sometimes already installed so we can ignore this failure
146
147
// ';' is the path separator on Windows, and ':' on Unix
148
Options.Path += RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? ";" : ":";
0 commit comments