From 4be9768e10c0b64685256f029bf5b9abd99faa0f Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Fri, 31 May 2024 10:37:38 +0100 Subject: [PATCH] Fix value --nobuild --- ChangeLog.md | 1 + scripts/fbt_tools/fbt_apps.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 062f80c97..53445f488 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ ### Added: - Sub-GHz: New Legrand doorbell protocol (by @user890104) +- FBT: New `SKIP_EXTERNAL` toggle and `EXTRA_EXT_APPS` config option (by @Willy-JL) ### Updated: - Apps: diff --git a/scripts/fbt_tools/fbt_apps.py b/scripts/fbt_tools/fbt_apps.py index dbf5fdbf4..7982fc4c7 100644 --- a/scripts/fbt_tools/fbt_apps.py +++ b/scripts/fbt_tools/fbt_apps.py @@ -142,7 +142,7 @@ def PrepareApplicationsBuild(env): applist=env["APPS"], ext_applist=env["EXTRA_EXT_APPS"], hw_target=env.subst("f${TARGET_HW}"), - skip_external=env.subst("$SKIP_EXTERNAL"), + skip_external=env["SKIP_EXTERNAL"], ) except Exception as e: raise StopError(e)