go.mod: bump osbuild/images to 0.55
This commit is contained in:
parent
eab44ca8a8
commit
22140aa7c9
700 changed files with 30353 additions and 27556 deletions
5
vendor/github.com/osbuild/images/pkg/manifest/empty.go
generated
vendored
5
vendor/github.com/osbuild/images/pkg/manifest/empty.go
generated
vendored
|
|
@ -22,6 +22,8 @@ type ContentTest struct {
|
|||
containerSpecs []container.Spec
|
||||
commitSpecs []ostree.CommitSpec
|
||||
|
||||
repos []rpmmd.RepoConfig
|
||||
|
||||
// serialization flag
|
||||
serializing bool
|
||||
}
|
||||
|
|
@ -63,13 +65,14 @@ func (p *ContentTest) getOSTreeCommits() []ostree.CommitSpec {
|
|||
return p.commitSpecs
|
||||
}
|
||||
|
||||
func (p *ContentTest) serializeStart(pkgs []rpmmd.PackageSpec, containers []container.Spec, commits []ostree.CommitSpec) {
|
||||
func (p *ContentTest) serializeStart(pkgs []rpmmd.PackageSpec, containers []container.Spec, commits []ostree.CommitSpec, rpmRepos []rpmmd.RepoConfig) {
|
||||
if p.serializing {
|
||||
panic("double call to serializeStart()")
|
||||
}
|
||||
p.packageSpecs = pkgs
|
||||
p.containerSpecs = containers
|
||||
p.commitSpecs = commits
|
||||
p.repos = rpmRepos
|
||||
|
||||
p.serializing = true
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue