]> git.ipfire.org Git - thirdparty/mkosi.git/commitdiff
opensuse: Fix gpgkey URL
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 14 Jan 2026 18:26:39 +0000 (19:26 +0100)
committerDaan De Meyer <daan.j.demeyer@gmail.com>
Wed, 14 Jan 2026 18:46:23 +0000 (19:46 +0100)
mkosi/distribution/opensuse.py

index 173e4f34c028441f8f790bb5d3ec905d6ea8c64d..d5a946c78c572396d06d9c29a7c3f1cbe01141e6 100644 (file)
@@ -298,6 +298,6 @@ def fetch_gpgurls(context: Context, repourl: str) -> tuple[str, ...]:
     for child in tags.iter("{http://linux.duke.edu/metadata/repo}content"):
         if child.text and child.text.startswith("gpg-pubkey"):
             gpgkey = child.text.partition("?")[0]
-            gpgurls += [f"{repourl}{gpgkey}"]
+            gpgurls += [f"{repourl}/{gpgkey}"]
 
     return tuple(gpgurls)