mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
publish index-v1.json and include a gpg signature
This gives a more flexible and direct way for many clients to consume the index file. #969
This commit is contained in:
parent
8e02c52a45
commit
707cd7addb
3 changed files with 19 additions and 1 deletions
|
|
@ -67,7 +67,7 @@ def main():
|
|||
for f in sorted(glob.glob(os.path.join(output_dir, '*.*'))):
|
||||
if common.get_file_extension(f) == 'asc':
|
||||
continue
|
||||
if not common.is_repo_file(f):
|
||||
if not common.is_repo_file(f) and not f.endswith('/index-v1.json'):
|
||||
continue
|
||||
filename = os.path.basename(f)
|
||||
sigfilename = filename + ".asc"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue