Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Deploy resources for extapps too
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Nov 12, 2023
1 parent 6369863 commit 088e7b5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/fbt_tools/fbt_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ def __generate_resources_dist_entries(env):
)

# Deploy apps' resources too
for app in env["APPBUILD"].apps:
resources_apps = env["APPBUILD"].apps.copy()
resources_apps.extend(x.app for x in env["FW_EXTAPPS"].application_map.values())
for app in resources_apps:
if not app.resources:
continue
apps_resource_dir = app._appdir.Dir(app.resources)
Expand Down

0 comments on commit 088e7b5

Please sign in to comment.