mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-06 17:31:07 +03:00
update: let it work without JDK, only JRE and apksigner
This commit is contained in:
parent
8f2ee4bd1d
commit
a736a37282
1 changed files with 2 additions and 1 deletions
|
@ -1875,7 +1875,8 @@ def main():
|
|||
|
||||
config = common.read_config(options)
|
||||
|
||||
if not ('jarsigner' in config and 'keytool' in config):
|
||||
if not (('jarsigner' in config or 'apksigner' in config)
|
||||
and 'keytool' in config):
|
||||
raise FDroidException(_('Java JDK not found! Install in standard location or set java_paths!'))
|
||||
|
||||
repodirs = ['repo']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue