(commands ...*CommandDefinition)
| 158 | } |
| 159 | |
| 160 | func (c Cli) convertCommands(commands ...*CommandDefinition) []*cli.Command { |
| 161 | result := []*cli.Command{} |
| 162 | for _, command := range commands { |
| 163 | result = append(result, c.convertCommand(command)) |
| 164 | } |
| 165 | return result |
| 166 | } |
| 167 | |
| 168 | func (c Cli) convertStringSliceFlag(flag *FlagDefinition) *cli.StringSliceFlag { |
| 169 | envVars := []string{} |
no test coverage detected