mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
list_builder: gotta load manifest.toml, not json, for app v2
This commit is contained in:
parent
54a8e45d31
commit
0341bcdf8f
1 changed files with 7 additions and 1 deletions
|
@ -5,10 +5,12 @@ import sys
|
|||
import os
|
||||
import re
|
||||
import json
|
||||
import toml
|
||||
import subprocess
|
||||
import yaml
|
||||
import time
|
||||
|
||||
from collections import OrderedDict
|
||||
from tools.packaging_v2.convert_v1_manifest_to_v2_for_catalog import convert_v1_manifest_to_v2_for_catalog
|
||||
|
||||
now = time.time()
|
||||
|
@ -297,7 +299,11 @@ def build_app_dict(app, infos):
|
|||
timestamp = int(timestamp)
|
||||
|
||||
# Build the dict with all the infos
|
||||
manifest = json.load(open(this_app_cache + "/manifest.json"))
|
||||
if os.path.exists(open(this_app_cache + "/manifest.toml")):
|
||||
manifest = toml.load(open(this_app_cache + "/manifest.toml", _dict=OrderedDict))
|
||||
else:
|
||||
manifest = json.load(open(this_app_cache + "/manifest.json"))
|
||||
|
||||
return {
|
||||
"id": manifest["id"],
|
||||
"git": {
|
||||
|
|
Loading…
Add table
Reference in a new issue