mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-05-15 19:34:34 -04:00
metadata: also read .fdroid.txt metadata
This is documented as working here: https://f-droid.org/docs/Building_Applications/ (second to last paragraph) fixes #364
This commit is contained in:
@@ -728,6 +728,7 @@ def read_metadata(xref=True, check_vcs=[]):
|
||||
for metadatapath in sorted(glob.glob(os.path.join('metadata', '*.txt'))
|
||||
+ glob.glob(os.path.join('metadata', '*.json'))
|
||||
+ glob.glob(os.path.join('metadata', '*.yml'))
|
||||
+ glob.glob('.fdroid.txt')
|
||||
+ glob.glob('.fdroid.json')
|
||||
+ glob.glob('.fdroid.yml')):
|
||||
packageName, _ = fdroidserver.common.get_extension(os.path.basename(metadatapath))
|
||||
|
||||
Reference in New Issue
Block a user