mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-08 18:31:07 +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
|
@ -319,7 +319,7 @@ def delete_disabled_builds(apps, apkcache, repodirs):
|
|||
for build in app['builds']:
|
||||
if not build.disable:
|
||||
continue
|
||||
apkfilename = appid + '_' + str(build.versionCode) + '.apk'
|
||||
apkfilename = common.get_release_filename(app, build)
|
||||
iconfilename = "%s.%s.png" % (
|
||||
appid,
|
||||
build.versionCode)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue