We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48a3ac5 commit d773f56Copy full SHA for d773f56
extractor/docker/docker.go
@@ -48,7 +48,7 @@ type DockerOption struct {
48
AuthURL string
49
UserName string
50
Password string
51
- GCRCredPath string
+ GcpCredPath string
52
AwsAccessKey string
53
AwsSecretKey string
54
AwsRegion string
extractor/docker/token/gcr/gcr.go
@@ -32,8 +32,8 @@ func (g *GCR) CheckOptions(domain string, d docker.DockerOption) error {
32
}
33
34
g.Auth = types.AuthConfig{}
35
- if d.GCRCredPath != "" {
36
- g.Store = store.NewGCRCredStore(d.GCRCredPath)
+ if d.GcpCredPath != "" {
+ g.Store = store.NewGCRCredStore(d.GcpCredPath)
37
38
return nil
39
0 commit comments