mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 14:30:11 +01:00
Add build time to /lastbuild on wiki
This commit is contained in:
parent
6b749852b5
commit
25a84a05b5
@ -24,6 +24,7 @@ import subprocess
|
||||
import re
|
||||
import tarfile
|
||||
import traceback
|
||||
import time
|
||||
from optparse import OptionParser
|
||||
|
||||
import common
|
||||
@ -674,6 +675,7 @@ def main():
|
||||
txt = wikilog
|
||||
if len(txt) > 8192:
|
||||
txt = txt[-8192:]
|
||||
txt = "Build completed at " + time.strftime("%Y-%m-%d %H:%M:%SZ", time.gmtime()) + "\n\n" + txt
|
||||
newpage.save(wikilog, summary='Build log')
|
||||
except:
|
||||
print "Error while attempting to publish build log"
|
||||
|
Loading…
Reference in New Issue
Block a user