Skip to content

Commit

Permalink
build_sdk.py: fix typos
Browse files Browse the repository at this point in the history
Signed-off-by: Ivan Velickovic <[email protected]>
  • Loading branch information
Ivan-Velickovic committed Jul 9, 2024
1 parent 3543fd2 commit b5eef17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ def main() -> None:
selected_board_names = frozenset(args.boards.split(","))
for board_name in selected_board_names:
if board_name not in supported_board_names:
raise Exception(f"Trying to build a board: {board} that does not exist in supported list.")
raise Exception(f"Trying to build a board: {board_name} that does not exist in supported list.")
selected_boards = [board for board in SUPPORTED_BOARDS if board.name in selected_board_names]
else:
selected_boards = SUPPORTED_BOARDS
Expand All @@ -444,7 +444,7 @@ def main() -> None:
selected_config_names = frozenset(args.configs.split(","))
for config_name in selected_config_names:
if config_name not in supported_config_names:
raise Exception(f"Trying to build a configuration: {config} that does not exist in supported list.")
raise Exception(f"Trying to build a configuration: {config_name} that does not exist in supported list.")
selected_configs = [config for config in SUPPORTED_CONFIGS if config.name in selected_config_names]
else:
selected_configs = SUPPORTED_CONFIGS
Expand Down

0 comments on commit b5eef17

Please sign in to comment.