(cmdInfo map[string]sharedaction.CommandInfo)
| 127 | } |
| 128 | |
| 129 | func (cmd HelpCommand) displayHelpFooter(cmdInfo map[string]sharedaction.CommandInfo) { |
| 130 | cmd.UI.DisplayHeader("ENVIRONMENT VARIABLES:") |
| 131 | cmd.UI.DisplayNonWrappingTable(sharedaction.AllCommandsIndent, cmd.environmentalVariablesTableData(), 1) |
| 132 | |
| 133 | cmd.UI.DisplayNewline() |
| 134 | |
| 135 | cmd.UI.DisplayHeader("GLOBAL OPTIONS:") |
| 136 | cmd.UI.DisplayNonWrappingTable(sharedaction.AllCommandsIndent, cmd.globalOptionsTableData(), 25) |
| 137 | |
| 138 | cmd.UI.DisplayNewline() |
| 139 | } |
| 140 | |
| 141 | func (cmd HelpCommand) displayCommonCommands() { |
| 142 | cmdInfo := cmd.Actor.CommandInfos(Commands) |
no test coverage detected