Skip to content

Commit

Permalink
(#33) Avoid some more built-in commands in model export
Browse files Browse the repository at this point in the history
Signed-off-by: R.I.Pienaar <[email protected]>
  • Loading branch information
ripienaar committed Apr 25, 2023
1 parent dd333b0 commit b0eb6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app_plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func (a *Application) introspectModel() *ApplicationModel {

var nc []*CmdModel
for _, cmd := range model.Commands {
if cmd.Name == "help" || cmd.Name == "cheat" {
if cmd.Name == "help" || cmd.Name == "cheat" || cmd.Name == "help_long" {
continue
}
nc = append(nc, cmd)
Expand Down

0 comments on commit b0eb6fe

Please sign in to comment.