From 916ec6922194b778f2b0c1c0c04817c6525be833 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Wed, 7 May 2025 17:25:21 +0200 Subject: [PATCH] appstore: fix manifest name --- .../builtin/apps/com.example.appstore/assets/appstore.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal_filesystem/builtin/apps/com.example.appstore/assets/appstore.py b/internal_filesystem/builtin/apps/com.example.appstore/assets/appstore.py index d4c02e9d..01a9541a 100644 --- a/internal_filesystem/builtin/apps/com.example.appstore/assets/appstore.py +++ b/internal_filesystem/builtin/apps/com.example.appstore/assets/appstore.py @@ -37,7 +37,7 @@ class App: def is_installed_by_path(dir_path): try: if os.stat(dir_path)[0] & 0x4000: - manifest = f"{dir_path}/META-INF/MANIFEST.MF" + manifest = f"{dir_path}/META-INF/MANIFEST.JSON" if os.stat(manifest)[0] & 0x8000: return True except OSError: