You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you setup a repo, you can include a $reponame-comps.xml file in the srcdir. But it no longer gets imported. Running mrepo with verbosity 4, I see that it's running createrepo with --groupfile=comps.xml instead of --groupfile=/$reponame-comps.xml. Turns out it's just a typo.
Line 924 is of the mrepo script is:
repoopts = repoopts + ' --groupfile "%s"' % groupfilename
It should be:
repoopts = repoopts + ' --groupfile "%s"' % groupfile
Sorry, I'm not a git user, so not much help submitting an actual patch.
The text was updated successfully, but these errors were encountered:
When you setup a repo, you can include a $reponame-comps.xml file in the srcdir. But it no longer gets imported. Running mrepo with verbosity 4, I see that it's running createrepo with --groupfile=comps.xml instead of --groupfile=/$reponame-comps.xml. Turns out it's just a typo.
Line 924 is of the mrepo script is:
repoopts = repoopts + ' --groupfile "%s"' % groupfilename
It should be:
repoopts = repoopts + ' --groupfile "%s"' % groupfile
Sorry, I'm not a git user, so not much help submitting an actual patch.
The text was updated successfully, but these errors were encountered: