Fix the SRC_SUPERVISOR setting check
This commit is contained in:
parent
b50a7fb913
commit
b93b1d0e75
|
@ -195,7 +195,7 @@ def set_boards(build_all: bool):
|
|||
# Check supervisor files
|
||||
# This is useful for limiting workflow changes to the relevant boards
|
||||
if file.startswith("supervisor"):
|
||||
if file in settings["SRC_SUPERVISOR"]:
|
||||
if file in settings.get("SRC_SUPERVISOR", ""):
|
||||
boards_to_build.add(board)
|
||||
continue
|
||||
|
||||
|
|
Loading…
Reference in New Issue