diff --git a/pkg/granted/registry/registry.go b/pkg/granted/registry/registry.go index 95489dbc..2427c816 100644 --- a/pkg/granted/registry/registry.go +++ b/pkg/granted/registry/registry.go @@ -32,7 +32,7 @@ func GetProfileRegistries(interactive bool) ([]loadedRegistry, error) { var registries []loadedRegistry for _, r := range gConf.ProfileRegistry.Registries { - if r.Type == "git" { + if r.Type == "git" || r.Type == "" { reg, err := gitregistry.New(gitregistry.Opts{ Name: r.Name, URL: r.URL,