diff --git a/imgbom/distro/identify.go b/imgbom/distro/identify.go index 7070ce4ca..1af85d6cc 100644 --- a/imgbom/distro/identify.go +++ b/imgbom/distro/identify.go @@ -61,7 +61,8 @@ func Identify(s scope.Scope) *Distro { } } // TODO: is it useful to know partially detected distros? where the ID is known but not the version (and viceversa?) - return nil + distro := NewUnknownDistro() + return &distro } func assembleDistro(name, version string) *Distro {