fix test baseline and handle scenario when no command args are passed

This commit is contained in:
Chet Husk 2024-07-16 13:42:19 -05:00
Родитель c6a76b5a85
Коммит f73da10f41
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -16,7 +16,7 @@ namespace Microsoft.DotNet.Tools.Help
result.ShowHelpOrErrorIfAppropriate();
if (result.GetValue(HelpCommandParser.Argument) is string[] args)
if (result.GetValue(HelpCommandParser.Argument) is string[] args && args is not [])
{
return new HelpCommand(args).Execute();
}

Просмотреть файл

@ -10,7 +10,7 @@ namespace Microsoft.DotNet.Help.Tests
.NET CLI help utility
Usage:
dotnet help [<COMMAND_NAME>] [options]
dotnet help [<COMMAND_NAME>...] [options]
Arguments:
<COMMAND_NAME> The SDK command to launch online help for.