This commit is contained in:
Willy-JL
2023-07-14 17:53:07 +02:00
parent afba0aad71
commit 849c801a37

View File

@@ -176,7 +176,12 @@ class AppBuilder:
deployable = False
app_artifacts.dist_entries.append((deployable, fal_path))
else:
category = 'assets' if self.app.apptype == FlipperAppType.MENUEXTERNAL and not self.app.fap_category else self.app.fap_category
category = (
"assets"
if self.app.apptype == FlipperAppType.MENUEXTERNAL
and not self.app.fap_category
else self.app.fap_category
)
fap_path = f"apps/{category}/{app_artifacts.compact.name}"
app_artifacts.dist_entries.append(
(self.app.is_default_deployable, fap_path)