Skip to content

Commit

Permalink
Fix an issue with the environment variable name used.
Browse files Browse the repository at this point in the history
  • Loading branch information
schmidtw committed Dec 12, 2023
1 parent 667cad1 commit 857dd8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ func programMaxWait() Option {
// skipDockerPull sets the skipDockerPull flag based on the environment variable.
func skipDockerPull() Option {
return optionFunc(func(c *IDock) {
c.skipDockerPull = envToBool(c.dockerMaxPullWaitFlag, c.skipDockerPull)
c.skipDockerPull = envToBool(c.skipDockerPullFlag, c.skipDockerPull)
})
}

Expand Down

0 comments on commit 857dd8e

Please sign in to comment.