We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca71df0 commit d533c90Copy full SHA for d533c90
tools/autobuild/build-downloads.py
@@ -65,9 +65,8 @@ def main(repo_path, output_path):
65
)
66
sys.exit(1)
67
68
- # Use "id" if specified, otherwise default to board dir (e.g. "PYBV11").
69
- # We allow boards to override ID for the historical build names.
70
- blob["id"] = blob.get("id", os.path.basename(board_dir))
+ # The ID of a board is the board directory (e.g. "PYBV11").
+ blob["id"] = os.path.basename(board_dir)
71
72
# Check for duplicate board IDs.
73
if blob["id"] in board_ids:
0 commit comments