1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Report errors properly when using --stop

This commit is contained in:
Ciaran Gultnieks 2013-05-20 12:20:38 +01:00
parent ecaf475fc8
commit bdf24d1891

View File

@ -672,21 +672,21 @@ def main():
logfile = open(os.path.join(log_dir, app['id'] + '.log'), 'a+')
logfile.write(str(be))
logfile.close()
print "Could not build app %s due to BuildException: %s" % (app['id'], be)
if options.stop:
sys.exit(1)
print "Could not build app %s due to BuildException: %s" % (app['id'], be)
failed_apps[app['id']] = be
wikilog = str(be)
except VCSException as vcse:
print "VCS error while building app %s: %s" % (app['id'], vcse)
if options.stop:
sys.exit(1)
print "VCS error while building app %s: %s" % (app['id'], vcse)
failed_apps[app['id']] = vcse
wikilog = str(vcse)
except Exception as e:
print "Could not build app %s due to unknown error: %s" % (app['id'], traceback.format_exc())
if options.stop:
sys.exit(1)
print "Could not build app %s due to unknown error: %s" % (app['id'], traceback.format_exc())
failed_apps[app['id']] = e
wikilog = str(e)