1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-02 09:10:11 +02:00

Merge branch 'jarsigner-and-keytool-lookup-regression' into 'master'

fix: jarsigner and keytool lookup regression

Closes #550

See merge request fdroid/fdroidserver!562
This commit is contained in:
Michael Pöhn 2018-08-21 01:28:22 +00:00
commit 1a8c77e815

View File

@ -236,8 +236,9 @@ def fill_config_defaults(thisconfig):
thisconfig['keytool'] = os.path.join(java_home, 'bin', 'keytool')
break
if 'jarsigner' not in thisconfig:
if 'jarsigner' not in thisconfig and shutil.which('jarsigner'):
thisconfig['jarsigner'] = shutil.which('jarsigner')
if 'keytool' not in thisconfig and shutil.which('keytool'):
thisconfig['keytool'] = shutil.which('keytool')
for k in ['ndk_paths', 'java_paths']: