diff --git a/src/pkg/utils/utils.go b/src/pkg/utils/utils.go index eb42b9062..fb3d6282e 100644 --- a/src/pkg/utils/utils.go +++ b/src/pkg/utils/utils.go @@ -285,7 +285,7 @@ func GetContainerNamePrefixForImage(image string) (string, error) { return basename, nil } -func GetDefaultImageForDistro(distro, release string) string { +func getDefaultImageForDistro(distro, release string) string { if _, supportedDistro := supportedDistros[distro]; !supportedDistro { distro = "fedora" } @@ -712,7 +712,7 @@ func ResolveImageName(distro, image, release string) (string, string, error) { } if image == "" { - image = GetDefaultImageForDistro(distro, release) + image = getDefaultImageForDistro(distro, release) } else { release = ImageReferenceGetTag(image) if release == "" {