mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
Do not say "manifest exists" if that's not the case
This commit is contained in:
parent
e415db9d2c
commit
a0d3c2c80d
1 changed files with 1 additions and 1 deletions
|
|
@ -77,8 +77,8 @@ def check_tags(app, sdk_path):
|
||||||
# Only process tags where the manifest exists...
|
# Only process tags where the manifest exists...
|
||||||
paths = common.manifest_paths(build_dir, flavour)
|
paths = common.manifest_paths(build_dir, flavour)
|
||||||
version, vercode, package = common.parse_androidmanifests(paths)
|
version, vercode, package = common.parse_androidmanifests(paths)
|
||||||
print "Manifest exists. Found version %s" % version
|
|
||||||
if package and package == app['id'] and version and vercode:
|
if package and package == app['id'] and version and vercode:
|
||||||
|
print "Manifest exists. Found version %s" % version
|
||||||
if int(vercode) > int(hcode):
|
if int(vercode) > int(hcode):
|
||||||
hcode = str(int(vercode))
|
hcode = str(int(vercode))
|
||||||
hver = version
|
hver = version
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue