Merge pull request #1128 from YunoHost/ignore-not-working

Don't include notworking apps in built list
This commit is contained in:
Alexandre Aubin
2021-04-15 12:44:05 +02:00
committed by GitHub

View File

@@ -11,6 +11,7 @@ import time
now = time.time()
catalog = json.load(open("apps.json"))
catalog = {app: infos for app, infos in catalog.items() if infos.get('state') != 'notworking'}
my_env = os.environ.copy()
my_env["GIT_TERMINAL_PROMPT"] = "0"