Add modules to f27-modular-updates even if their only branch is '2.4'
This commit is contained in:
parent
1847e1bf56
commit
fe795ff8de
1 changed files with 5 additions and 1 deletions
|
@ -401,9 +401,13 @@ if __name__ == '__main__':
|
|||
namespace = info['namespace']
|
||||
pkgs = []
|
||||
for pkg, branches in namespace_to_projects[namespace].items():
|
||||
# The tag and branch names are the same for "old-style" branches
|
||||
if info['branch'] in branches or tag == ('f' + RAWHIDE):
|
||||
# The tag and branch names are the same for "old-style" branches
|
||||
pkgs.append(pkg)
|
||||
elif namespace == 'modules':
|
||||
# Add modules to f27-modular-updates even if their only branch is '2.4'
|
||||
pkgs.append(pkg)
|
||||
|
||||
# This is a special project, not in dist-git, but which needs to be in
|
||||
# the package list.
|
||||
if namespace == 'rpms':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue