deps: Update osbuild images module to commit 03212162ff49

This pulls in the Size(0) change for test_distro.

Ran:
go get github.com/osbuild/images@latest
./tools/prepare-source.sh
This commit is contained in:
Brian C. Lane 2023-08-04 08:45:35 -07:00 committed by Ondřej Budai
parent e96ed30d4b
commit 50c5147cf1
9 changed files with 486 additions and 18 deletions

View file

@ -186,7 +186,10 @@ func (t *TestImageType) OSTreeRef() string {
}
func (t *TestImageType) Size(size uint64) uint64 {
return 0
if size == 0 {
size = 1073741824
}
return size
}
func (t *TestImageType) PartitionType() string {