add apksigner, jarsigner, and keytool to relevant status JSON

This commit is contained in:
Hans-Christoph Steiner 2021-03-19 15:44:43 +01:00
parent 903a7396b1
commit 7ec2a8ebb3
4 changed files with 67 additions and 0 deletions

View file

@ -144,6 +144,9 @@ def status_update_json(apps, apks):
output['noPackages'] = []
output['needsUpdate'] = []
output['noUpdateCheck'] = []
output['apksigner'] = shutil.which(config.get('apksigner', ''))
output['jarsigner'] = shutil.which(config.get('jarsigner', ''))
output['keytool'] = shutil.which(config.get('keytool', ''))
for appid in apps:
app = apps[appid]