mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 15:30:28 +03:00
Merge branch 'master' into verbose-rewrite
This commit is contained in:
commit
67b8825560
5 changed files with 32 additions and 29 deletions
|
|
@ -119,7 +119,8 @@ def check_tags(app, sdk_path):
|
|||
paths = common.manifest_paths(build_dir, flavour)
|
||||
version, vercode, package = common.parse_androidmanifests(paths)
|
||||
if package and package == app['id'] and version and vercode:
|
||||
print "Manifest exists. Found version %s" % version
|
||||
print "Manifest exists. Found version %s (%s)" % (
|
||||
version, vercode)
|
||||
if int(vercode) > int(hcode):
|
||||
htag = tag
|
||||
hcode = str(int(vercode))
|
||||
|
|
@ -336,6 +337,7 @@ def main():
|
|||
|
||||
tag = None
|
||||
msg = None
|
||||
vercode = None
|
||||
mode = app['Update Check Mode']
|
||||
if mode == 'Tags':
|
||||
(version, vercode, tag) = check_tags(app, config['sdk_path'])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue