From 193c3f9b731375125f293e8f4e3223fe9fc68004 Mon Sep 17 00:00:00 2001 From: Louis Abel Date: Fri, 8 Jul 2022 20:44:15 -0700 Subject: [PATCH] solve path join issue --- iso/empanadas/empanadas/templates/README.tmpl | 10 +++++++--- iso/empanadas/empanadas/util/dnf_utils.py | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/iso/empanadas/empanadas/templates/README.tmpl b/iso/empanadas/empanadas/templates/README.tmpl index 498653c..eae1a2a 100644 --- a/iso/empanadas/empanadas/templates/README.tmpl +++ b/iso/empanadas/empanadas/templates/README.tmpl @@ -4,7 +4,7 @@ using Empanadas {{ version }} from the SIG/Core Toolkit. As this is not a traditional compose, there will be things that you might be expecting and do not see, or not expecting and do see. While we attempted to recreate a lot of those elements, it's not perfect. In the future, we do plan on -having more metadata and providing a client libraries that can ingest this type +having more metadata and providing client libraries that can ingest this type of metadata that we produce for easy consumption. # Notes # @@ -24,5 +24,9 @@ are attached to our GitHub and RESF Git Service profiles. If you are looking for "verification" of the ISO checksums and were expecting a `CHECKSUM.sig`, it is highly recommended to visit the link above instead. -These are *always* updated with new releases or new images. This includes -live images as we release them. +To verify our signature, click on "commits" and click the green "Verified" +button where you will see a GPG key ID. You can then search for this ID at the +any of the following: + +https://keys.openpgp.org/ +https://keyserver.ubuntu.com diff --git a/iso/empanadas/empanadas/util/dnf_utils.py b/iso/empanadas/empanadas/util/dnf_utils.py index 1fdad86..90e7215 100644 --- a/iso/empanadas/empanadas/util/dnf_utils.py +++ b/iso/empanadas/empanadas/util/dnf_utils.py @@ -1521,7 +1521,7 @@ class RepoSync: lp.close() images_arch_root = os.path.join(sync_images_root, arch) - images_arch_checksum = os.path.join(sync_images_root, arch) + images_arch_checksum = os.path.join(sync_images_root, 'CHECKSUM') if os.path.exists(images_arch_root): with open(images_arch_checksum, 'w+', encoding='utf-8') as ip: for icheck in glob.iglob(images_arch_root + '/*.CHECKSUM'):