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
|
@ -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}");
|
||||||
|
|
Loading…
Add table
Reference in a new issue