| |
@@ -597,7 +597,7 @@
|
| |
if updates.get(release, {}).get("stable"):
|
| |
stable = (
|
| |
"<a href='https://koji.fedoraproject.org/koji/search?"
|
| |
- "terms={0}&type=build&match=glob'>{0}</a>".format(
|
| |
+ "terms={0}&type=build&match=exact'>{0}</a>".format(
|
| |
updates[release].get("stable")
|
| |
)
|
| |
)
|
| |
@@ -625,7 +625,7 @@
|
| |
)
|
| |
stable = (
|
| |
"<a href='https://koji.fedoraproject.org/koji/search?"
|
| |
- "terms={0}&type=build&match=glob'>{0}</a>".format(
|
| |
+ "terms={0}&type=build&match=exact'>{0}</a>".format(
|
| |
build
|
| |
)
|
| |
)
|
| |
@@ -633,7 +633,7 @@
|
| |
if updates.get(release, {}).get("testing"):
|
| |
testing = (
|
| |
"<a href='https://koji.fedoraproject.org/koji/search?"
|
| |
- "terms={0}&type=build&match=glob'>{0}</a>".format(
|
| |
+ "terms={0}&type=build&match=exact'>{0}</a>".format(
|
| |
updates[release].get("testing")
|
| |
)
|
| |
)
|
| |
Use exact build NVR searches in Koji, because these perform better than searching with case-insensitive globs.