Fix typo in error message (#1494)

This commit is contained in:
Lars 2020-12-09 01:18:11 +01:00 committed by GitHub
parent 131828a1ad
commit c982956c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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))
}
}