pkg/utils: Rename a variable for consistency

Fallout from df7e01df10

https://github.com/containers/toolbox/pull/1303
This commit is contained in:
Debarshi Ray 2023-06-07 16:02:26 +02:00
parent d14fd7bb50
commit 774ce8bd07

View file

@ -829,7 +829,7 @@ func ResolveContainerAndImageNames(container, distroCLI, imageCLI, releaseCLI st
}
}
if _, ok := supportedDistros[distro]; !ok {
if _, supportedDistro := supportedDistros[distro]; !supportedDistro {
return "", "", "", &DistroError{distro, ErrDistroUnsupported}
}