Skip to content

Commit

Permalink
Merge branch 'master' of ssh://code.funtoo.org:7999/core/merge-scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrobbins committed Feb 18, 2019
2 parents ab2469a + b520577 commit e89c94a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/merge-all-kits
Expand Up @@ -223,7 +223,7 @@ async def updateKit(foundation, config, release, async_engine : AsyncMergeAllKit
kit_name = kit_dict['name']
kit_branch = kit_dict['branch']
kit_root = "%s/%s" % (config.dest_trees, kit_dict['name'])
repo_config = mu.RepositoryConfig(kit_name, kit_branch, kit_root, config)
repo_config = mu.RepositoryConfig(kit_name, kit_root, kit_branch, config)

# If we have gotten here, we are automatically generating a kit...
kit_dict['tree'] = tree = mu.GitTree(kit_dict['name'], kit_dict['branch'], config=config,
Expand Down Expand Up @@ -398,7 +398,7 @@ async def updateKit(foundation, config, release, async_engine : AsyncMergeAllKit
# Phase 4: finalize and commit

# remove unused licenses...
used_licenses = await mu.getAllLicenses(tree)
used_licenses = await mu.getAllLicenses(tree, repo_config=repo_config)
to_remove = []
for license in os.listdir(tree.root + "/licenses"):
if license not in used_licenses["dest_kit"]:
Expand Down

0 comments on commit e89c94a

Please sign in to comment.