Fix casing of Sha
`Commit Sha: xyz` -> `Commit SHA-1 hash: xyz` for `dotnet --info` output.
This commit is contained in:
parent
1923b1ffdf
commit
41e9c9e0fc
1 changed files with 2 additions and 2 deletions
|
@ -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}");
|
||||
|
|
Loading…
Add table
Reference in a new issue