Fix the SRC_SUPERVISOR setting check

This commit is contained in:
Radomir Dopieralski 2023-08-20 01:20:05 +02:00
parent b50a7fb913
commit b93b1d0e75
1 changed files with 1 additions and 1 deletions

View File

@ -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