chiark / gitweb /
Be more verbose when doing checkupdates
authorDaniel Martí <mvdan@mvdan.cc>
Sat, 3 Aug 2013 16:34:35 +0000 (18:34 +0200)
committerDaniel Martí <mvdan@mvdan.cc>
Sat, 3 Aug 2013 16:34:35 +0000 (18:34 +0200)
fdroidserver/checkupdates.py

index d38c784df911bb54bdb31ee68d8a2f8d72f855c3..20f51b80150bae57ea4b2f3ee180498cc39aab38 100644 (file)
@@ -71,8 +71,11 @@ def check_tags(app, sdk_path):
             vcs.gotorevision(tag)
 
             # 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)
+                print "Manifest exists. Found version %s" % version
                 if package and package == app['id'] and version and vercode:
                     if int(vercode) > int(hcode):
                         hcode = str(int(vercode))