From a736a37282a8f0efcf7acdb9de1ce0c0ab74d25b Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Tue, 19 Jun 2018 15:11:18 +0200 Subject: [PATCH] update: let it work without JDK, only JRE and apksigner --- fdroidserver/update.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fdroidserver/update.py b/fdroidserver/update.py index 296111de..58aab01c 100644 --- a/fdroidserver/update.py +++ b/fdroidserver/update.py @@ -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']