Main apps in ext apps folders (use if not in menu)

This commit is contained in:
Willy-JL
2023-08-04 20:55:55 +02:00
parent 4891a37033
commit 00728b688b
10 changed files with 10 additions and 7 deletions
+1 -7
View File
@@ -176,13 +176,7 @@ 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
)
fap_path = f"apps/{category}/{app_artifacts.compact.name}"
fap_path = f"apps/{self.app.fap_category}/{app_artifacts.compact.name}"
app_artifacts.dist_entries.append(
(self.app.is_default_deployable, fap_path)
)