1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-13 02:30:11 +01:00

Fix --auto for the new BV syntax

This commit is contained in:
Daniel Martí 2013-10-31 17:59:45 +01:00
parent 16baeece58
commit 8767dc3059

View File

@ -424,7 +424,8 @@ def main():
latest = build
if not gotcur:
newbuild = latest.copy()
del newbuild['origlines']
if 'origlines' in newbuild:
del newbuild['origlines']
newbuild['vercode'] = app['Current Version Code']
newbuild['version'] = app['Current Version'] + suffix
print "...auto-generating build for " + newbuild['version']