mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
btlog: include index-v2.json entry.json and entry.jar
This commit is contained in:
parent
dc3175cc06
commit
7be0ec3572
1 changed files with 9 additions and 1 deletions
|
|
@ -182,7 +182,15 @@ def main():
|
||||||
os.makedirs(tempdir, exist_ok=True)
|
os.makedirs(tempdir, exist_ok=True)
|
||||||
gitrepodir = os.path.join(options.git_repo, repodir)
|
gitrepodir = os.path.join(options.git_repo, repodir)
|
||||||
os.makedirs(gitrepodir, exist_ok=True)
|
os.makedirs(gitrepodir, exist_ok=True)
|
||||||
for f in ('index.jar', 'index.xml', 'index-v1.jar', 'index-v1.json'):
|
for f in (
|
||||||
|
'entry.jar',
|
||||||
|
'entry.json',
|
||||||
|
'index-v1.jar',
|
||||||
|
'index-v1.json',
|
||||||
|
'index-v2.json',
|
||||||
|
'index.jar',
|
||||||
|
'index.xml',
|
||||||
|
):
|
||||||
dlfile = os.path.join(tempdir, f)
|
dlfile = os.path.join(tempdir, f)
|
||||||
dlurl = options.url + '/' + repodir + '/' + f
|
dlurl = options.url + '/' + repodir + '/' + f
|
||||||
http_headers_file = os.path.join(gitrepodir, f + '.HTTP-headers.json')
|
http_headers_file = os.path.join(gitrepodir, f + '.HTTP-headers.json')
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue