Force stream name to be the same as in branch

This commit is contained in:
Mustafa Gezen 2021-04-24 21:45:06 +02:00
parent 2b2a74c337
commit 32af526744
1 changed files with 6 additions and 0 deletions

View File

@ -252,6 +252,12 @@ func patchModuleYaml(pd *data.ProcessData, md *data.ModeData) {
log.Fatalf("could not parse modulemd file: %v", err)
}
// Get stream branch from tag
match := tagImportRegex.FindStringSubmatch(md.TagBranch)
streamBranch := strings.Split(match[2], "-")
// Force stream to be the same as stream name in branch
module.Data.Stream = streamBranch[len(streamBranch)-1]
log.Println("This module contains the following rpms:")
for name := range module.Data.Components.Rpms {
log.Printf("\t- %s", name)