We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c8ac09 commit 3964857Copy full SHA for 3964857
hack/build-image
@@ -473,9 +473,9 @@ def add_special_tags(img, distro_qualified=True):
473
img.additional_tags.append((NIGHTLY, QUAL_NONE))
474
if not distro_qualified:
475
return # skip creating "distro qualified" tags
476
- if img.arch == host_arch() and img.pkg_source == "default":
+ if img.arch == host_arch() and img.pkg_source == DEFAULT:
477
img.additional_tags.append((f"{img.distro}-{LATEST}", QUAL_DISTRO))
478
- if img.arch == host_arch() and img.pkg_source == "nightly":
+ if img.arch == host_arch() and img.pkg_source == NIGHTLY:
479
img.additional_tags.append((f"{img.distro}-{NIGHTLY}", QUAL_DISTRO))
480
481
0 commit comments