mirror of
https://github.com/rpm-software-management/tito.git
synced 2025-02-23 20:22:46 +00:00
Whatever the alias order, release into rawhide first
Follow-up after PR #476
This commit is contained in:
parent
5b05b611a7
commit
53403f1d05
1 changed files with 6 additions and 0 deletions
|
@ -115,6 +115,12 @@ class FedoraGitReleaser(Releaser):
|
||||||
if name in aliases:
|
if name in aliases:
|
||||||
branches = [x.branch for x in aliases[name]]
|
branches = [x.branch for x in aliases[name]]
|
||||||
result.extend(branches)
|
result.extend(branches)
|
||||||
|
|
||||||
|
# It is probably a good idea to release into rawhide first
|
||||||
|
if "rawhide" in result:
|
||||||
|
result.remove("rawhide")
|
||||||
|
result.insert(0, "rawhide")
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def _get_build_target_for_branch(self, branch):
|
def _get_build_target_for_branch(self, branch):
|
||||||
|
|
Loading…
Add table
Reference in a new issue