mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Use new manifest path function in checkupdates
This commit is contained in:
parent
f1c1971c88
commit
8866724f05
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ 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')):
|
if os.path.exists(common.manifest_path(build_dir)):
|
||||||
version, vercode, package = common.parse_androidmanifest(build_dir)
|
version, vercode, package = common.parse_androidmanifest(build_dir)
|
||||||
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):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue