Merge pull request #147 from monstermunchkin/issues/145-opensuse-leap-download-pattern

sources: Fix openSUSE Leap 15 tarball URL
This commit is contained in:
Christian Brauner 2019-03-04 14:53:01 +01:00 committed by GitHub
commit d8a2072977
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -138,7 +138,7 @@ func (s *OpenSUSEHTTP) getPathToTarball(baseURL string, release string, arch str
u.Path = path.Join(u.Path, "containers_ports")
}
u.Path = path.Join(u.Path, fmt.Sprintf("opensuse-leap-%s-image.%s-lxc.tar.xz", release,
u.Path = path.Join(u.Path, fmt.Sprintf("opensuse-leap-image.%s-lxc.tar.xz",
arch))
}