1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-04 16:30:12 +02:00

log installed android sdk versions for update and checkupdates

This commit is contained in:
Hans-Christoph Steiner 2018-01-17 17:17:26 +01:00
parent e163c09e26
commit 010f1c5029
2 changed files with 3 additions and 0 deletions

View File

@ -603,6 +603,8 @@ def main():
txt += "* started at " + common.get_wiki_timestamp(start_timestamp) + '\n'
txt += "* completed at " + common.get_wiki_timestamp() + '\n'
txt += "\n\n"
txt += common.get_android_tools_version_log()
txt += "\n\n"
if gplaylog:
txt += '== --gplay check ==\n\n'
txt += gplaylog

View File

@ -331,6 +331,7 @@ def update_wiki(apps, sortedids, apks):
txt += "* started at " + common.get_wiki_timestamp(start_timestamp) + '\n'
txt += "* completed at " + common.get_wiki_timestamp() + '\n'
txt += "\n\n"
txt += common.get_android_tools_version_log()
newpage.save(txt, summary='Run log')
newpage = site.Pages['update']
newpage.save('#REDIRECT [[' + wiki_page_path + ']]', summary='Update redirect')