fresh-empanadas - Bug fixes #20

Open
kemotaha wants to merge 16 commits from kemotaha/toolkit:fresh-empanadas into fresh-empanadas
Showing only changes of commit 9639176823 - Show all commits

View File

@ -919,8 +919,10 @@ class Shared:
compose_latest_sync,
compose_dir_is_here: bool = False,
hashed: bool = False,
extra_repos: list = None
):
extra_repos: list = None,
staging_base_url: str = 'https://dl.rockylinux.org/stg',
use_staging: bool = False,
):
"""
Builds the repo dictionary
"""
@ -954,7 +956,9 @@ class Shared:
repolist.append(repodata)
if extra_repos:
repolist.append(repo for repo in Shared.parse_extra_repos(extra_repos))
extras = Shared.parse_extra_repos(extra_repos)
for repo in extras:
repolist.append(repo)
return repolist
@ -963,7 +967,7 @@ class Shared:
# must be in format URL[,PRIORITY]
result = []
for idx, candidate in enumerate(extra_repos):
if isinstance(dict, candidate):
if isinstance(candidate, dict):
url, priority = candidate['url'], candidate.get('priority', None)
url, priority = candidate.split(',')
if not priority: