ShowHelp shows the command help.
(err io.Writer)
| 124 | |
| 125 | // ShowHelp shows the command help. |
| 126 | func ShowHelp(err io.Writer) func(*cobra.Command, []string) error { |
| 127 | return func(cmd *cobra.Command, args []string) error { |
| 128 | cmd.SetOut(err) |
| 129 | cmd.HelpFunc()(cmd, args) |
| 130 | return nil |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | // ConfigFile returns the ConfigFile |
| 135 | func (cli *DockerCli) ConfigFile() *configfile.ConfigFile { |
nothing calls this directly
no test coverage detected
searching dependent graphs…