Don't provide hints for the hint command
This commit is contained in:
parent
d2678e08de
commit
fe0dd8e08f
|
|
@ -304,14 +304,21 @@ public class SpringCli {
|
|||
|
||||
private void showCommandHints(String starting) {
|
||||
for (Command command : SpringCli.this.commands) {
|
||||
if (command.getName().startsWith(starting)
|
||||
|| (command.isOptionCommand() && ("--" + command.getName())
|
||||
.startsWith(starting))) {
|
||||
if (isHintMatch(command, starting)) {
|
||||
Log.info(command.getName() + " " + command.getDescription());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private boolean isHintMatch(Command command, String starting) {
|
||||
if (command instanceof HintCommand) {
|
||||
return false;
|
||||
}
|
||||
return command.getName().startsWith(starting)
|
||||
|| (command.isOptionCommand() && ("--" + command.getName())
|
||||
.startsWith(starting));
|
||||
}
|
||||
|
||||
private void showCommandOptionHints(String commandName,
|
||||
List<String> specifiedArguments, String starting) {
|
||||
Command command = find(commandName);
|
||||
|
|
|
|||
Loading…
Reference in New Issue