mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Better CV update prints and commit messages
This commit is contained in:
parent
1ef558c68d
commit
33b489c65d
@ -289,16 +289,16 @@ def main():
|
|||||||
version = None
|
version = None
|
||||||
vercode = 'Invalid update check method'
|
vercode = 'Invalid update check method'
|
||||||
|
|
||||||
|
updating = False
|
||||||
if not version:
|
if not version:
|
||||||
print "..." + vercode
|
print "..." + vercode
|
||||||
elif vercode == app['Current Version Code']:
|
elif vercode == app['Current Version Code']:
|
||||||
print "...up to date"
|
print "...up to date"
|
||||||
else:
|
else:
|
||||||
print '...updating to version:' + version + ' vercode:' + vercode
|
|
||||||
app['Current Version'] = version
|
app['Current Version'] = version
|
||||||
app['Current Version Code'] = str(int(vercode))
|
app['Current Version Code'] = str(int(vercode))
|
||||||
|
updating = True
|
||||||
writeit = True
|
writeit = True
|
||||||
logmsg = "Update current version of " + app['id'] + " to " + version
|
|
||||||
|
|
||||||
# Do the Auto Name thing as well as finding the CV real name
|
# Do the Auto Name thing as well as finding the CV real name
|
||||||
if len(app["Repo Type"]) > 0:
|
if len(app["Repo Type"]) > 0:
|
||||||
@ -333,6 +333,11 @@ def main():
|
|||||||
except Exception:
|
except Exception:
|
||||||
msg = "Auto Name or Current Version failed for %s due to exception: %s" % (app['id'], traceback.format_exc())
|
msg = "Auto Name or Current Version failed for %s due to exception: %s" % (app['id'], traceback.format_exc())
|
||||||
|
|
||||||
|
if updating:
|
||||||
|
print '...updating to version %s (%s)' % (app['Current Version'], app['Current Version Code'])
|
||||||
|
name = str('%s (%s)' % (app['Auto Name'], app['id']) if app['Auto Name'] else app['id'])
|
||||||
|
logmsg = 'Update current version of %s to %s (%s)' % (name, app['Current Version'], app['Current Version Code'])
|
||||||
|
|
||||||
if options.auto:
|
if options.auto:
|
||||||
mode = app['Auto Update Mode']
|
mode = app['Auto Update Mode']
|
||||||
if mode == 'None':
|
if mode == 'None':
|
||||||
|
Loading…
Reference in New Issue
Block a user