Fix casing of Sha

`Commit Sha: xyz` -> `Commit SHA-1 hash: xyz`  for `dotnet --info` output.
This commit is contained in:
Peter Jas 2016-05-04 18:02:52 +00:00
parent 1923b1ffdf
commit 41e9c9e0fc

View file

@ -182,8 +182,8 @@ namespace Microsoft.DotNet.Cli
var commitSha = GetCommitSha() ?? "N/A";
Reporter.Output.WriteLine();
Reporter.Output.WriteLine("Product Information:");
Reporter.Output.WriteLine($" Version: {Product.Version}");
Reporter.Output.WriteLine($" Commit Sha: {commitSha}");
Reporter.Output.WriteLine($" Version: {Product.Version}");
Reporter.Output.WriteLine($" Commit SHA-1 hash: {commitSha}");
Reporter.Output.WriteLine();
Reporter.Output.WriteLine("Runtime Environment:");
Reporter.Output.WriteLine($" OS Name: {RuntimeEnvironment.OperatingSystem}");