mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
Don't include notworking apps in built list
This commit is contained in:
parent
0bb223abfc
commit
4004ff8d23
1 changed files with 1 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue