Skip to content

Commit

Permalink
Merge pull request #849 from wripley/master
Browse files Browse the repository at this point in the history
Modified error message for writing image with digest file
  • Loading branch information
tejal29 authored Dec 9, 2019
2 parents 05da029 + f6aa8f7 commit 56f92e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/executor/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ func DoPush(image v1.Image, opts *config.KanikoOptions) error {
if opts.ImageNameDigestFile != "" {
err := ioutil.WriteFile(opts.ImageNameDigestFile, []byte(builder.String()), 0644)
if err != nil {
return errors.Wrap(err, "writing digest to file failed")
return errors.Wrap(err, "writing image name with digest to file failed")
}
}

Expand Down

0 comments on commit 56f92e7

Please sign in to comment.