1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-04 22:40:12 +01:00

Some extra analysis output code in the update script

This commit is contained in:
Ciaran Gultnieks 2010-12-04 22:56:13 +00:00
parent 8a8142d65d
commit 9f8e950374

View File

@ -238,6 +238,14 @@ for app in apps:
if not gotmarketver and app['marketvercode'] != '0':
print "WARNING: Don't have market version (" + app['marketversion'] + ") of " + app['name']
print " (" + app['id'] + ")"
if options.verbose:
# A bit of extra debug info, basically for diagnosing
# app developer mistakes:
print " Market vercode:" + app['marketvercode']
print " Got:"
for apk in apks:
if apk['id'] == app['id']:
print " " + apk['versioncode'] + " - " + apk['version']
else:
apps_disabled += 1