We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07a46b commit eae9ad8Copy full SHA for eae9ad8
src/Cli/dotnet/Commands/Tool/Execute/ToolExecuteCommand.cs
@@ -81,7 +81,7 @@ private bool UserAgreedToRunFromSource()
81
Console.Write(CliCommandStrings.ToolRunFromSourceUserConfirmationPrompt);
82
bool userAccepted = Console.ReadKey().Key == ConsoleKey.Y;
83
Console.WriteLine();
84
- Console.WriteLine(new string('-', CliCommandStrings.ToolRunFromSourceUserConfirmationPrompt.Length));
+ Console.WriteLine(new string('─', CliCommandStrings.ToolRunFromSourceUserConfirmationPrompt.Length));
85
return userAccepted;
86
}
87
0 commit comments