mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-12 18:20:29 +03:00
unified method for naming build output
This commit is contained in:
parent
62af9b8e3d
commit
5b7209d882
3 changed files with 6 additions and 7 deletions
|
|
@ -467,7 +467,7 @@ def main():
|
|||
for build in app.builds:
|
||||
apks = []
|
||||
for f in os.listdir(options.repo_path):
|
||||
n = "%v_%v.apk".format(app_id, build.versionCode)
|
||||
n = common.get_release_filename(app, build)
|
||||
if f == n:
|
||||
apks.append(f)
|
||||
for apk in sorted(apks):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue