diff --git a/cli/catalogue/generate.go b/cli/catalogue/generate.go index 524527ea..2d97d95e 100644 --- a/cli/catalogue/generate.go +++ b/cli/catalogue/generate.go @@ -99,12 +99,15 @@ var catalogueGenerateCommand = &cli.Command{ } catl[recipeMeta.Name] = catalogue.RecipeMeta{ - Name: recipeName, + Name: recipeMeta.Name, Repository: recipeMeta.CloneURL, + Icon: recipeMeta.AvatarURL, DefaultBranch: recipeMeta.DefaultBranch, Description: recipeMeta.Description, Website: recipeMeta.Website, - Versions: nil, // FIXME: once the new versions work goes down + // Versions: ..., // FIXME: once the new versions work goes down + // Category: ..., // FIXME: once we sort out the machine-readable catalogue interface + // Features: ..., // FIXME: once we figure out the machine-readable catalogue interface } }