Dependencies should always be string

This commit is contained in:
Mustafa Gezen 2021-04-27 16:39:03 +02:00
parent b3a9c581a7
commit f92efe75b6
1 changed files with 2 additions and 2 deletions

View File

@ -61,8 +61,8 @@ type ModuleMd struct {
} `yaml:"license,omitempty"`
Xmd map[string]interface{} `yaml:"xmd,omitempty"`
Dependencies []struct {
Buildrequires map[string]interface{} `yaml:"buildrequires,omitempty,omitempty"`
Requires map[string]interface{} `yaml:"requires,omitempty,omitempty"`
Buildrequires map[string][]string `yaml:"buildrequires,omitempty,omitempty"`
Requires map[string][]string `yaml:"requires,omitempty,omitempty"`
} `yaml:"dependencies,omitempty"`
References struct {
Community string `yaml:"community,omitempty"`