diff --git a/fdroidserver/update.py b/fdroidserver/update.py index b8a40095..5e37cab5 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -323,6 +323,18 @@ def update_wiki(apps, sortedids, apks): # Purge server cache to ensure counts are up to date site.Pages['Repository Maintenance'].purge() + # Write a page with the last build log for this version code + wiki_page_path = 'update_' + time.strftime('%s', start_timestamp) + newpage = site.Pages[wiki_page_path] + txt = '' + txt += "* command line: " + ' '.join(sys.argv) + "\n" + txt += "* started at " + common.get_wiki_timestamp(start_timestamp) + '\n' + txt += "* completed at " + common.get_wiki_timestamp() + '\n' + txt += "\n\n" + newpage.save(txt, summary='Run log') + newpage = site.Pages['update'] + newpage.save('#REDIRECT [[' + wiki_page_path + ']]', summary='Update redirect') + def delete_disabled_builds(apps, apkcache, repodirs): """Delete disabled build outputs. @@ -1759,6 +1771,7 @@ def create_metadata_from_template(apk): config = None options = None +start_timestamp = time.gmtime() def main():