Merge pull request #1945 from jamesqo/class-typo
Fix typo in CompileCommand class name
This commit is contained in:
commit
0e92937850
2 changed files with 3 additions and 3 deletions
|
@ -314,7 +314,7 @@ namespace Microsoft.DotNet.Tools.Build
|
|||
args.Add(_args.BuildBasePathValue);
|
||||
}
|
||||
|
||||
var compileResult = CommpileCommand.Run(args.ToArray());
|
||||
var compileResult = CompileCommand.Run(args.ToArray());
|
||||
|
||||
return compileResult == 0;
|
||||
}
|
||||
|
@ -395,7 +395,7 @@ namespace Microsoft.DotNet.Tools.Build
|
|||
|
||||
args.Add(_rootProject.ProjectDirectory);
|
||||
|
||||
var compileResult = CommpileCommand.Run(args.ToArray());
|
||||
var compileResult = CompileCommand.Run(args.ToArray());
|
||||
|
||||
var succeeded = compileResult == 0;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@ using Microsoft.DotNet.Cli.Utils;
|
|||
|
||||
namespace Microsoft.DotNet.Tools.Compiler
|
||||
{
|
||||
public class CommpileCommand
|
||||
public class CompileCommand
|
||||
{
|
||||
|
||||
public static int Run(string[] args)
|
||||
|
|
Loading…
Reference in a new issue