Add another apps.json for development purposes

This commit is contained in:
Aaron Dewes 2021-10-13 14:33:38 +01:00
parent cde5e73370
commit 4a2adf2072
2 changed files with 3 additions and 0 deletions

1
apps/apps.json Normal file
View File

@ -0,0 +1 @@
[]

View File

@ -17,4 +17,6 @@ def update():
simpleRegistry = getSimpleAppRegistry(apps, appsDir)
with open(os.path.join(appsDir, "apps.json"), "w") as f:
json.dump(simpleRegistry, f, indent=4, sort_keys=True)
with open(os.path.join(appsDir, "apps", "apps.json"), "w") as f:
json.dump(simpleRegistry, f, indent=4, sort_keys=True)
print("Wrote information to apps.json")