Skip to content

Commit b93b1d0

Browse files
committed
Fix the SRC_SUPERVISOR setting check
1 parent b50a7fb commit b93b1d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ci_set_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def get_settings(board):
195195
# Check supervisor files
196196
# This is useful for limiting workflow changes to the relevant boards
197197
if file.startswith("supervisor"):
198-
if file in settings["SRC_SUPERVISOR"]:
198+
if file in settings.get("SRC_SUPERVISOR", ""):
199199
boards_to_build.add(board)
200200
continue
201201

0 commit comments

Comments
 (0)