1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-17 18:43:50 +01:00

tools/compile_like_murdock: Fix default board case...

This commit is contained in:
MrKevinWeiss 2023-03-09 14:10:48 +01:00
parent 50cd32fbbf
commit f3dea757e9
No known key found for this signature in database
GPG Key ID: 4B69974722CBEEAE
2 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ def main():
if args.cpu:
target_boards = _supported_boards_from_cpu(args.cpu, full_env,
test_dir)
elif args.boards[0] == "all":
elif args.boards and args.boards[0] == "all":
target_boards = _supported_boards(boards, full_env, test_dir, True)
else:
target_boards = _supported_boards(boards, full_env, test_dir,

0
dist/tools/compile_test/tests/run.py vendored Normal file
View File