More os.path.join() use cases

This commit is contained in:
Daniel Martí 2013-05-24 23:43:49 +02:00
parent 79ec50719d
commit 0861f870a3
2 changed files with 7 additions and 6 deletions

View file

@ -73,7 +73,7 @@ def check_tags(app, sdk_path):
vcs.gotorevision(tag)
# Only process tags where the manifest exists...
if os.path.exists(build_dir + '/AndroidManifest.xml'):
if os.path.exists(os.path.join(build_dir, 'AndroidManifest.xml')):
version, vercode, package = common.parse_androidmanifest(build_dir)
if package and package == app['id'] and version and vercode:
if int(vercode) > int(hcode):