1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

Delete merge_official_and_community.py

This commit is contained in:
Alexandre Aubin 2020-03-20 17:59:05 +01:00 committed by GitHub
parent c32ee2b2e0
commit 66d6be2527
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,14 +0,0 @@
import json
community = json.loads(open("community.json").read())
official = json.loads(open("official.json").read())
# Add high quality and set working state for official apps
for app, infos in official.items():
infos["high_quality"] = True
infos["state"] = "working"
merged = community
merged.update(official)
open("apps.json", "w").write(json.dumps(merged, sort_keys=True, indent=4, separators=(',', ': ')))