checkupdates: ignore tags where manifest doesn't exist

This commit is contained in:
Ciaran Gultnieks 2013-03-21 14:21:01 +00:00
parent d1647acc50
commit cf1ff3a0da

View file

@ -66,6 +66,8 @@ def check_tags(app, sdk_path):
for tag in vcs.gettags():
vcs.gotorevision(tag)
# Only process tags where the manifest exists...
if os.path.exists(manifest):
version, vercode, package = common.parse_androidmanifest(manifest)
if package and package == app['id'] and version and vercode:
if int(vercode) > int(hcode):