Skip to content

Commit

Permalink
Merge pull request #510 from raccoongang/max/fix/catalog-repos
Browse files Browse the repository at this point in the history
fix: catalog only repos are missing in a release list
  • Loading branch information
cmltaWt0 committed May 7, 2024
2 parents 64e0716 + 13f7ee3 commit 10862af
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions edx_repo_tools/release/tag_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ def filter_repos(openedx_repo, catalog_repo):
else:
result_dict[repo_key] = openedx_data

for repo_key, catalog_data in catalog_repo.items():
if repo_key not in result_dict:
result_dict[repo_key] = catalog_data

return result_dict


Expand Down

0 comments on commit 10862af

Please sign in to comment.