diff options
| author | 2026-02-25 15:24:46 -0500 | |
|---|---|---|
| committer | 2026-02-25 20:32:42 +0000 | |
| commit | adbfbc22905593b82f6c5a2f271b2c7f2d53ec28 (patch) | |
| tree | 17fa5de4c53f13b0090c7e5426d674e1bd00bac0 /scripts | |
| parent | 920caefad7588fbd8897ec5b72e9972e5dd30819 (diff) | |
| download | kiwi-descriptions-adbfbc22905593b82f6c5a2f271b2c7f2d53ec28.tar.gz kiwi-descriptions-adbfbc22905593b82f6c5a2f271b2c7f2d53ec28.zip | |
kiwi-build, scripts: Drop unnecessary override for OCI artifacts
The underlying issue that required this was fixed in kiwi-10.2.17.
Diffstat (limited to 'scripts')
| -rwxr-xr-x | scripts/fedora-kiwi-bundle-format-generator | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/scripts/fedora-kiwi-bundle-format-generator b/scripts/fedora-kiwi-bundle-format-generator index a03d253..7c48324 100755 --- a/scripts/fedora-kiwi-bundle-format-generator +++ b/scripts/fedora-kiwi-bundle-format-generator @@ -14,7 +14,6 @@ import xml.etree.ElementTree as ET parser = ArgumentParser(description="Generator of kiwi bundle formats for Fedora image builds") parser.add_argument("kiwi_file", type=Path, default="Fedora.kiwi", help="kiwi description file") parser.add_argument("image_profile", type=str, help="kiwi image profile") -parser.add_argument("--oci-variant", "-o", action="store_true", help="generate oci variant") args = parser.parse_args() xml_tree = ET.parse(args.kiwi_file) @@ -23,9 +22,4 @@ image_root = xml_tree.getroot() image_basename = image_root.attrib["name"] image_profile = args.image_profile -image_bundle_format = f"{image_basename}-{image_profile}-%v.%I.%A" - -if args.oci_variant: - print(f"{image_bundle_format}.%T") -else: - print(image_bundle_format) +print(f"{image_basename}-{image_profile}-%v.%I.%A") |