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

@ -183,7 +183,7 @@ namespace Microsoft.DotNet.Cli
Reporter.Output.WriteLine(); Reporter.Output.WriteLine();
Reporter.Output.WriteLine("Product Information:"); Reporter.Output.WriteLine("Product Information:");
Reporter.Output.WriteLine($" Version: {Product.Version}"); Reporter.Output.WriteLine($" Version: {Product.Version}");
Reporter.Output.WriteLine($" Commit Sha: {commitSha}"); Reporter.Output.WriteLine($" Commit SHA-1 hash: {commitSha}");
Reporter.Output.WriteLine(); Reporter.Output.WriteLine();
Reporter.Output.WriteLine("Runtime Environment:"); Reporter.Output.WriteLine("Runtime Environment:");
Reporter.Output.WriteLine($" OS Name: {RuntimeEnvironment.OperatingSystem}"); Reporter.Output.WriteLine($" OS Name: {RuntimeEnvironment.OperatingSystem}");