Add modules to f27-modular-updates even if their only branch is '2.4'

This commit is contained in:
Ralph Bean 2017-10-20 20:35:29 +00:00
parent 1847e1bf56
commit fe795ff8de

View file

@ -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':