mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-09 00:40:11 +01:00
Don't abort on a build log publishing error
This commit is contained in:
parent
48670b9e6c
commit
0cb41cce55
@ -644,7 +644,10 @@ def main():
|
||||
txt = str(be)
|
||||
if len(txt) > 8192:
|
||||
txt = txt[-8192:]
|
||||
try:
|
||||
newpage.save(str(be), summary='Build log')
|
||||
except:
|
||||
print "Error while attempting to publish build log"
|
||||
except VCSException as vcse:
|
||||
if options.stop:
|
||||
sys.exit(1)
|
||||
|
Loading…
Reference in New Issue
Block a user