Stop setting repository in module packages with non gitlabified names

This commit is contained in:
Mustafa Gezen 2021-04-26 13:19:43 +02:00
parent f6b3beb7dd
commit c9c2426a7f
1 changed files with 0 additions and 6 deletions

View File

@ -308,12 +308,6 @@ func patchModuleYaml(pd *data.ProcessData, md *data.ModeData) {
rpm.Ref = tipHash
}
for name, rpm := range module.Data.Components.Rpms {
if name != gitlabify(name) {
rpm.Repository = fmt.Sprintf("https://%s/rpms/%s.git", pd.UpstreamPrefixHttps, gitlabify(name))
}
}
rootModule := fmt.Sprintf("%s.yaml", md.RpmFile.Name())
err = module.Marshal(md.Worktree.Filesystem, rootModule)
if err != nil {