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 df1cad4 commit 257af06Copy full SHA for 257af06
hack/build-image
@@ -463,9 +463,9 @@ def add_special_tags(img, distro_qualified=True):
463
img.additional_tags.append((NIGHTLY, QUAL_NONE))
464
if not distro_qualified:
465
return # skip creating "distro qualified" tags
466
- if img.arch == host_arch() and img.pkg_source == "default":
+ if img.arch == host_arch() and img.pkg_source == DEFAULT:
467
img.additional_tags.append((f"{img.distro}-{LATEST}", QUAL_DISTRO))
468
- if img.arch == host_arch() and img.pkg_source == "nightly":
+ if img.arch == host_arch() and img.pkg_source == NIGHTLY:
469
img.additional_tags.append((f"{img.distro}-{NIGHTLY}", QUAL_DISTRO))
470
471
0 commit comments