Skip to content

Commit

Permalink
fix: [CI-6412]: Error message Refinement (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
smjt-h authored Jan 4, 2023
1 parent d998c00 commit 9c90e58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/kaniko-ecr/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ func getAssumeRoleCreds(region, roleArn, externalId, roleSessionName string) (st

username, password, registry, err := getAuthInfo(svc)
if err != nil {
return "", "", "", errors.Wrap(err, "failed to get ECR auth")
return "", "", "", errors.Wrap(err, "failed to get ECR auth: no basic auth credentials")
}
return username, password, registry, nil
}
Expand Down

0 comments on commit 9c90e58

Please sign in to comment.