mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Don't skip checkupdates commits due to no message
This commit is contained in:
parent
9962074cf3
commit
99bf37302a
1 changed files with 4 additions and 0 deletions
|
|
@ -417,12 +417,16 @@ def main():
|
||||||
if new_name != app['Auto Name']:
|
if new_name != app['Auto Name']:
|
||||||
app['Auto Name'] = new_name
|
app['Auto Name'] = new_name
|
||||||
writeit = True
|
writeit = True
|
||||||
|
if not logmsg:
|
||||||
|
logmsg = "Set autoname of {0}".format(common.getappname(app))
|
||||||
|
|
||||||
if app['Current Version'].startswith('@string/'):
|
if app['Current Version'].startswith('@string/'):
|
||||||
cv = common.version_name(app['Current Version'], app_dir, flavour)
|
cv = common.version_name(app['Current Version'], app_dir, flavour)
|
||||||
if app['Current Version'] != cv:
|
if app['Current Version'] != cv:
|
||||||
app['Current Version'] = cv
|
app['Current Version'] = cv
|
||||||
writeit = True
|
writeit = True
|
||||||
|
if not logmsg:
|
||||||
|
logmsg = "Fix CV of {0}".format(common.getappname(app))
|
||||||
except Exception:
|
except Exception:
|
||||||
logging.error("Auto Name or Current Version failed for %s due to exception: %s" % (app['id'], traceback.format_exc()))
|
logging.error("Auto Name or Current Version failed for %s due to exception: %s" % (app['id'], traceback.format_exc()))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue