Merge pull request #37 from ferhatelmas/drop-for

drop for loop in favor of append
pull/39/head
Brad Rydzewski 5 years ago committed by GitHub
commit 65ef1df51d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -20,9 +20,7 @@ import "github.com/drone/drone-runtime/engine"
// of global registry credentials to the container.
func WithAuths(auths []*engine.DockerAuth) func(*engine.Spec) {
return func(spec *engine.Spec) {
for _, auth := range auths {
spec.Docker.Auths = append(spec.Docker.Auths, auth)
}
spec.Docker.Auths = append(spec.Docker.Auths, auths...)
}
}

Loading…
Cancel
Save