Merge pull request #2639 from abpframework/maliming/helpcommand

Output a warning if the command is not found.
pull/2646/head^2
Yunus Emre Kalkan 5 years ago committed by GitHub
commit 6c252a25dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,6 +32,13 @@ namespace Volo.Abp.Cli.Commands
return Task.CompletedTask;
}
if (!AbpCliOptions.Commands.ContainsKey(commandLineArgs.Target))
{
Logger.LogWarning($"There is no command named {commandLineArgs.Target}.");
Logger.LogInformation(GetUsageInfo());
return Task.CompletedTask;
}
var commandType = AbpCliOptions.Commands[commandLineArgs.Target];
using (var scope = ServiceScopeFactory.CreateScope())

Loading…
Cancel
Save