Skip to content

Commit 4403594

Browse files
Exclude uploader entries for new boards
1 parent fd14be2 commit 4403594

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

generator/generator.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,8 @@ def generate_boards_json(input_data, arduino_cli_path):
284284
boards[fqbn]["name"] = board["name"]
285285
break
286286

287-
boards[fqbn].update(create_upload_data(fqbn, installed_cores))
287+
if fqbn not in skip_precomp:
288+
boards[fqbn].update(create_upload_data(fqbn, installed_cores))
288289

289290
boards_json = []
290291
for _, b in boards.items():

0 commit comments

Comments
 (0)