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

convert_app_to_packaging_v2.py: remove full_domain

This properties is not used by the core. It's deduced from the fact that there's no path properties.
This commit is contained in:
Tagada 2023-08-03 15:42:25 +02:00 committed by GitHub
parent 8c6aba65a8
commit 920e963395
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -145,9 +145,6 @@ def _convert_v1_manifest_to_v2(app_path):
elif manifest["install"]["init_main_permission"].get("default") is True:
manifest["install"]["init_main_permission"]["default"] = "all_users"
if "domain" in manifest["install"] and "path" not in manifest["install"]:
manifest["install"]["domain"]["full_domain"] = True
manifest["resources"] = {}
sources = convert_app_sources(app_path)