mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-04 22:40:12 +01: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:
commit
1a8c77e815
@ -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']:
|
||||
|
Loading…
Reference in New Issue
Block a user