fix: fix name and doc exceptions for catalogue generation
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
a8ce64a9db
commit
7b349732ac
@ -99,12 +99,15 @@ var catalogueGenerateCommand = &cli.Command{
|
|||||||
}
|
}
|
||||||
|
|
||||||
catl[recipeMeta.Name] = catalogue.RecipeMeta{
|
catl[recipeMeta.Name] = catalogue.RecipeMeta{
|
||||||
Name: recipeName,
|
Name: recipeMeta.Name,
|
||||||
Repository: recipeMeta.CloneURL,
|
Repository: recipeMeta.CloneURL,
|
||||||
|
Icon: recipeMeta.AvatarURL,
|
||||||
DefaultBranch: recipeMeta.DefaultBranch,
|
DefaultBranch: recipeMeta.DefaultBranch,
|
||||||
Description: recipeMeta.Description,
|
Description: recipeMeta.Description,
|
||||||
Website: recipeMeta.Website,
|
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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user