diff --git a/pkg/commands/setimagetag.go b/pkg/commands/setimagetag.go index ba2f51d0c..63f8eed76 100644 --- a/pkg/commands/setimagetag.go +++ b/pkg/commands/setimagetag.go @@ -58,10 +58,6 @@ and overwrite the previous newTag if the image name exists. if err != nil { return err } - err = o.Complete(cmd, args) - if err != nil { - return err - } return o.RunSetImageTags(fsys) }, } @@ -84,11 +80,6 @@ func (o *setImageTagOptions) Validate(args []string) error { return nil } -// Complete completes setImageTag command. -func (o *setImageTagOptions) Complete(cmd *cobra.Command, args []string) error { - return nil -} - // RunSetImageTags runs setImageTags command (does real work). func (o *setImageTagOptions) RunSetImageTags(fsys fs.FileSystem) error { mf, err := newKustomizationFile(constants.KustomizationFileName, fsys)