mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Also remove 'disable' from auto-update builds
This commit is contained in:
parent
13af519069
commit
63ce679a9d
1 changed files with 3 additions and 2 deletions
|
@ -481,8 +481,9 @@ def main():
|
||||||
|
|
||||||
if not gotcur:
|
if not gotcur:
|
||||||
newbuild = latest.copy()
|
newbuild = latest.copy()
|
||||||
if 'origlines' in newbuild:
|
for k in ('origlines', 'disable'):
|
||||||
del newbuild['origlines']
|
if k in newbuild:
|
||||||
|
del newbuild[k]
|
||||||
newbuild['vercode'] = app['Current Version Code']
|
newbuild['vercode'] = app['Current Version Code']
|
||||||
newbuild['version'] = app['Current Version'] + suffix
|
newbuild['version'] = app['Current Version'] + suffix
|
||||||
logging.info("...auto-generating build for " + newbuild['version'])
|
logging.info("...auto-generating build for " + newbuild['version'])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue