Remove the message that reports compilation failed

This commit is contained in:
David Fowler 2015-11-01 01:44:53 -07:00
parent d430ad35c4
commit 30f8e6fa4c

View file

@ -72,9 +72,9 @@ namespace Microsoft.DotNet.Tools.Compiler
.ForwardStdOut()
.ForwardStdErr()
.Execute();
if (result.ExitCode != 0)
{
Reporter.Error.WriteLine($"Failed to compile {context.RootProject.Identity.Name}".Red().Bold());
return result.ExitCode;
}