From f49b5fd1872d93144a32a6e623d5a8aa67238198 Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Tue, 5 Dec 2023 16:42:32 -0500 Subject: [PATCH] explicitly enable the repo to be checked during closure otherwise dnf happily will check nothing if the repo does not exist --- obal/data/modules/repoclosure.py | 1 + 1 file changed, 1 insertion(+) diff --git a/obal/data/modules/repoclosure.py b/obal/data/modules/repoclosure.py index fc910064..85e3ee1f 100644 --- a/obal/data/modules/repoclosure.py +++ b/obal/data/modules/repoclosure.py @@ -36,6 +36,7 @@ def main(): for name in check: command.extend(['--check', name]) + command.extend(['--repo', name]) for repo in additional_repos: command.extend(['--repofrompath', '{},{}'.format(repo['name'], repo['url'])])