Merge pull request #1012 from dylandee/fix-redundant-docker-image-push

remove redundant image push operation
This commit is contained in:
Jianbo Sun
2021-02-04 16:37:57 +08:00
committed by GitHub
+1 -1
View File
@@ -106,7 +106,7 @@ func (b *Build) buildImage(io cmdutil.IOStreams, image string) error {
io.Errorf("BuildImage wait for command execution error:%s", err.Error())
return err
}
return b.pushImage(io, image)
return nil
}
func (b *Build) pushImage(io cmdutil.IOStreams, image string) error {