Skip to content

Commit

Permalink
Fix typo in error message (#1494)
Browse files Browse the repository at this point in the history
  • Loading branch information
elgohr authored Dec 9, 2020
1 parent 131828a commit c982956
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/executor/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -675,7 +675,7 @@ func DoBuild(opts *config.KanikoOptions) (v1.Image, error) {

// Delete the filesystem
if err := util.DeleteFilesystem(); err != nil {
return nil, errors.Wrap(err, fmt.Sprintf("deleting file system after satge %d", index))
return nil, errors.Wrap(err, fmt.Sprintf("deleting file system after stage %d", index))
}
}

Expand Down

0 comments on commit c982956

Please sign in to comment.