mirror of https://github.com/docker/cli.git
Merge pull request #5024 from laurazard/run-hooks-error
plugins/hooks: run hooks when exit code != 0
This commit is contained in:
commit
78089c5394
|
@ -353,9 +353,6 @@ func runDocker(ctx context.Context, dockerCli *command.DockerCli) error {
|
||||||
// which remain.
|
// which remain.
|
||||||
cmd.SetArgs(args)
|
cmd.SetArgs(args)
|
||||||
err = cmd.Execute()
|
err = cmd.Execute()
|
||||||
if err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
|
|
||||||
// If the command is being executed in an interactive terminal,
|
// If the command is being executed in an interactive terminal,
|
||||||
// run the plugin hooks (but don't throw an error if something misbehaves)
|
// run the plugin hooks (but don't throw an error if something misbehaves)
|
||||||
|
@ -363,7 +360,7 @@ func runDocker(ctx context.Context, dockerCli *command.DockerCli) error {
|
||||||
_ = pluginmanager.RunPluginHooks(dockerCli, cmd, subCommand, "", args)
|
_ = pluginmanager.RunPluginHooks(dockerCli, cmd, subCommand, "", args)
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
type versionDetails interface {
|
type versionDetails interface {
|
||||||
|
|
Loading…
Reference in New Issue