mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-04 22:40:29 +03:00
Some extra analysis output code in the update script
This commit is contained in:
parent
8a8142d65d
commit
9f8e950374
1 changed files with 8 additions and 0 deletions
|
|
@ -238,6 +238,14 @@ for app in apps:
|
||||||
if not gotmarketver and app['marketvercode'] != '0':
|
if not gotmarketver and app['marketvercode'] != '0':
|
||||||
print "WARNING: Don't have market version (" + app['marketversion'] + ") of " + app['name']
|
print "WARNING: Don't have market version (" + app['marketversion'] + ") of " + app['name']
|
||||||
print " (" + app['id'] + ")"
|
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:
|
else:
|
||||||
apps_disabled += 1
|
apps_disabled += 1
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue