unified method for naming build output

This commit is contained in:
Michael Pöhn 2017-04-22 12:04:32 +02:00
parent 62af9b8e3d
commit 5b7209d882
3 changed files with 6 additions and 7 deletions

View file

@ -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)