mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
add apksigner, jarsigner, and keytool to relevant status JSON
This commit is contained in:
parent
903a7396b1
commit
7ec2a8ebb3
4 changed files with 67 additions and 0 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue