solve path join issue

This commit is contained in:
Louis Abel 2022-07-08 20:44:15 -07:00
parent 40b3af462d
commit 193c3f9b73
Signed by: label
GPG Key ID: B37E62D143879B36
2 changed files with 8 additions and 4 deletions

View File

@ -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

View File

@ -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'):