Don't include notworking apps in built list

This commit is contained in:
Alexandre Aubin 2021-04-09 00:17:47 +02:00
parent e5fcf07fc0
commit cecb91ced3

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"