Skip to content

Commit 29a62bc

Browse files
committed
continue to fix ci
1 parent d50796f commit 29a62bc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tools/build_all.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
# All supported boards
1919
all_boards = []
2020
for entry in os.scandir("src/boards"):
21-
all_boards.append(entry.name)
21+
if entry.is_dir():
22+
all_boards.append(entry.name)
2223
all_boards.sort()
2324

2425
#sha, version = build_info.get_version_info()

0 commit comments

Comments
 (0)