1
0

Revert "fix: load, not import"

This reverts commit 35df5850f5.
This commit is contained in:
2024-02-21 18:55:48 +00:00
parent 4a1422e010
commit 8251927821
3 changed files with 5 additions and 5 deletions

View File

@ -53,14 +53,14 @@ func (suse OpenSUSE) Packages() (pkgs []string, err error) {
}
cnturl := cache.ContainerURL(cnt)
err = container.Load(cnturl, name)
err = container.Import(cnturl, name)
if err != nil {
return
}
} else if strings.HasPrefix(suse.release, "13") {
name = "opensuse:13"
cnturl := cache.ContainerURL("openSUSE-13.2")
err = container.Load(cnturl, name)
err = container.Import(cnturl, name)
if err != nil {
return
}