mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-14 23:12:46 +03:00
Be more verbose when doing checkupdates
This commit is contained in:
parent
7ff2fafb1b
commit
c39ba28c01
1 changed files with 4 additions and 1 deletions
|
@ -71,8 +71,11 @@ def check_tags(app, sdk_path):
|
||||||
vcs.gotorevision(tag)
|
vcs.gotorevision(tag)
|
||||||
|
|
||||||
# Only process tags where the manifest exists...
|
# Only process tags where the manifest exists...
|
||||||
if os.path.exists(os.path.join(build_dir, 'AndroidManifest.xml')):
|
path = common.manifest_path(build_dir)
|
||||||
|
print "Trying manifest at %s" % path
|
||||||
|
if os.path.exists(path):
|
||||||
version, vercode, package = common.parse_androidmanifest(build_dir)
|
version, vercode, package = common.parse_androidmanifest(build_dir)
|
||||||
|
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:
|
||||||
if int(vercode) > int(hcode):
|
if int(vercode) > int(hcode):
|
||||||
hcode = str(int(vercode))
|
hcode = str(int(vercode))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue