PR#4207: fix latest symlink check
Merges #4207 https://pagure.io/koji/pull-request/4207 Fixes: #4206 https://pagure.io/koji/issue/4206 latest symlink generation stopped working in 1.35
This commit is contained in:
commit
c4b6507696
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ def symlink_if_latest(repo):
|
|||
clauses = [
|
||||
['tag_id', '=', repo['tag_id']],
|
||||
['state', '=', koji.REPO_READY],
|
||||
['create_event', '>=', repo['create_event']]]
|
||||
['create_event', '>', repo['create_event']]]
|
||||
if repo['dist']:
|
||||
clauses.append(['dist', 'IS', True])
|
||||
else:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue