mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-19 20:29:15 +00:00
fix tools/fdroid_fetchsrclibs.py to use fdroidserver 2.0 API
fdroid/fdroidserver!838
This commit is contained in:
parent
84fedfed3a
commit
91d80a5a1c
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ def main():
|
|||
os.makedirs(srclib_dir, exist_ok=True)
|
||||
srclibpaths = []
|
||||
for appid, app in apps.items():
|
||||
for build in app.builds:
|
||||
for build in app.get('Builds', []):
|
||||
for lib in build.srclibs:
|
||||
srclibpaths.append(common.getsrclib(lib, srclib_dir, build=build))
|
||||
print('Set up srclibs:')
|
||||
|
|
|
|||
Loading…
Reference in a new issue