Skip to content

Commit

Permalink
fix list of modules for alias boards
Browse files Browse the repository at this point in the history
  • Loading branch information
Neradoc committed Mar 29, 2021
1 parent 0102325 commit 032209e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/build_board_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ def generate_download_info():
board_files = os.listdir(board_path.path)
board_id = board_path.name
board_info = board_mapping[board_id]
board_modules = support_matrix.get(board_id, "[]")

for alias in [board_id] + board_info["aliases"]:
alias_info = board_mapping[alias]
Expand All @@ -311,7 +312,7 @@ def generate_download_info():
new_version = {
"stable": new_stable,
"version": new_tag,
"modules": support_matrix.get(alias, "[]"),
"modules": board_modules,
"languages": languages,
"extensions": board_info["extensions"],
}
Expand Down

0 comments on commit 032209e

Please sign in to comment.