Skip to content

Commit

Permalink
fix: catalog only repos are missing in a release list
Browse files Browse the repository at this point in the history
  • Loading branch information
cmltaWt0 committed May 7, 2024
1 parent 64e0716 commit 13f7ee3
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 13f7ee3

Please sign in to comment.