FBT: Can set EXTRA_EXT_APPS from config, not only CLI

This commit is contained in:
Willy-JL
2024-05-31 06:19:05 +01:00
parent 9e39da91e2
commit 7c929338a2
3 changed files with 11 additions and 1 deletions

View File

@@ -73,7 +73,9 @@ env = ENV.Clone(
FW_API_TABLE=None,
_APP_ICONS=None,
APPS=_.split(",") if (_ := GetOption("extra_int_apps")) else [],
EXTRA_EXT_APPS=_.split(",") if (_ := GetOption("extra_ext_apps")) else [],
EXTRA_EXT_APPS=_.split(",")
if (_ := GetOption("extra_ext_apps"))
else ENV["EXTRA_EXT_APPS"],
)
env.PreConfigureFwEnvionment()