mirror of
https://github.com/YunoHost/yunodevtools.git
synced 2024-09-03 20:16:19 +02:00
fix
This commit is contained in:
parent
be079a8712
commit
a02a2047ee
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ def generate_READMEs(app_path: str):
|
|||
manifest = json.load(open(app_path / "manifest.json"))
|
||||
upstream = manifest.get("upstream", {})
|
||||
|
||||
catalog = json.load(open(Path(__file__).parent.parent.parent / "apps.json"))
|
||||
catalog = json.load(open(Path(os.path.abspath(__file__)).parent.parent.parent / "apps.json"))
|
||||
from_catalog = catalog.get(manifest['id'], {})
|
||||
|
||||
if not upstream and not (app_path / "doc" / "DISCLAIMER.md").exists():
|
||||
|
|
Loading…
Add table
Reference in a new issue