cli/command: DockerCli.HooksEnabled check current before legacy
The DOCKER_CLI_HINTS env-var is replaced by DOCKER_CLI_HOOKS; check the new env-var first, and only fall back to checking the legacy env-var if it's not set. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
a2d78071c1
commit
6d551e0a5a
@ -194,16 +194,16 @@ func (cli *DockerCli) BuildKitEnabled() (bool, error) {
|
|||||||
|
|
||||||
// HooksEnabled returns whether plugin hooks are enabled.
|
// HooksEnabled returns whether plugin hooks are enabled.
|
||||||
func (cli *DockerCli) HooksEnabled() bool {
|
func (cli *DockerCli) HooksEnabled() bool {
|
||||||
// legacy support DOCKER_CLI_HINTS env var
|
// use DOCKER_CLI_HOOKS env var value if set and not empty
|
||||||
if v := os.Getenv("DOCKER_CLI_HINTS"); v != "" {
|
if v := os.Getenv("DOCKER_CLI_HOOKS"); v != "" {
|
||||||
enabled, err := strconv.ParseBool(v)
|
enabled, err := strconv.ParseBool(v)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
return enabled
|
return enabled
|
||||||
}
|
}
|
||||||
// use DOCKER_CLI_HOOKS env var value if set and not empty
|
// legacy support DOCKER_CLI_HINTS env var
|
||||||
if v := os.Getenv("DOCKER_CLI_HOOKS"); v != "" {
|
if v := os.Getenv("DOCKER_CLI_HINTS"); v != "" {
|
||||||
enabled, err := strconv.ParseBool(v)
|
enabled, err := strconv.ParseBool(v)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return false
|
return false
|
||||||
|
Loading…
x
Reference in New Issue
Block a user