Print toolchain aliases in a formatted way.
(aliases: dict[str, str], board_name: str)
| 376 | |
| 377 | |
| 378 | def print_toolchain_aliases(aliases: dict[str, str], board_name: str): |
| 379 | """Print toolchain aliases in a formatted way.""" |
| 380 | print(f"\n⚙️ Toolchain Aliases for {board_name.upper()}:") |
| 381 | print("=" * 50) |
| 382 | for tool, path in aliases.items(): |
| 383 | if path: |
| 384 | # Show just the tool name from the path for readability |
| 385 | tool_name = Path(path).name if path else "Not available" |
| 386 | print(f" {tool:10}: {tool_name}") |
| 387 | else: |
| 388 | print(f" {tool:10}: Not available") |
| 389 | |
| 390 | |
| 391 | def print_comparison(comparison: dict[str, Any]): |