deps: bump
This commit is contained in:
parent
57ebfb4011
commit
babf80f060
164 changed files with 61441 additions and 55390 deletions
11
vendor/github.com/osbuild/images/pkg/manifest/ovf.go
generated
vendored
11
vendor/github.com/osbuild/images/pkg/manifest/ovf.go
generated
vendored
|
|
@ -14,12 +14,17 @@ type OVF struct {
|
|||
}
|
||||
|
||||
// NewOVF creates a new OVF pipeline. imgPipeline is the pipeline producing the vmdk image.
|
||||
func NewOVF(buidPipeline Build, imgPipeline *VMDK) *OVF {
|
||||
func NewOVF(buildPipeline Build, imgPipeline *VMDK) *OVF {
|
||||
p := &OVF{
|
||||
Base: NewBase("ovf", buidPipeline),
|
||||
Base: NewBase("ovf", buildPipeline),
|
||||
imgPipeline: imgPipeline,
|
||||
}
|
||||
buidPipeline.addDependent(p)
|
||||
// See similar logic in qcow2 to run on the host
|
||||
if buildPipeline != nil {
|
||||
buildPipeline.addDependent(p)
|
||||
} else {
|
||||
imgPipeline.Manifest().addPipeline(p)
|
||||
}
|
||||
return p
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue