Skip to content

Commit

Permalink
Merge pull request #569 from frelon/master
Browse files Browse the repository at this point in the history
Fix typo in error message
  • Loading branch information
priyawadhwa authored Feb 19, 2019
2 parents 7c3947b + 1b54bda commit f197a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func LocalSource(opts *config.KanikoOptions, cacheKey string) (v1.Image, error)

fi, err := os.Stat(path)
if err != nil {
return nil, errors.Wrap(err, "geting file info")
return nil, errors.Wrap(err, "getting file info")
}

// A stale cache is a bad cache
Expand Down

0 comments on commit f197a06

Please sign in to comment.