Fix a panic when the DOCKER_HOST was invalid using cobra commands.
Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 90244abc5bfc3be3f97bef16f15079c4fb96c1ff Component: engine
This commit is contained in:
@@ -71,7 +71,9 @@ func (c CobraAdaptor) Usage() []cli.Command {
|
||||
}
|
||||
|
||||
func (c CobraAdaptor) run(cmd string, args []string) error {
|
||||
c.dockerCli.Initialize()
|
||||
if err := c.dockerCli.Initialize(); err != nil {
|
||||
return err
|
||||
}
|
||||
// Prepend the command name to support normal cobra command delegation
|
||||
c.rootCmd.SetArgs(append([]string{cmd}, args...))
|
||||
return c.rootCmd.Execute()
|
||||
|
||||
Reference in New Issue
Block a user