Skip to content

Commit

Permalink
Merge pull request #880 from tstromberg/master
Browse files Browse the repository at this point in the history
Add missing filename to error message
  • Loading branch information
dgageot authored Aug 7, 2018
2 parents 275246b + 9301db6 commit c630a45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/skaffold/docker/parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func GetDependencies(workspace string, a *v1alpha2.DockerArtifact) ([]string, er

fi, err := os.Stat(absDep)
if err != nil {
return nil, errors.Wrapf(err, "stating file %s")
return nil, errors.Wrapf(err, "stating file %s", absDep)
}

switch mode := fi.Mode(); {
Expand Down

0 comments on commit c630a45

Please sign in to comment.