chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f0b66ce
)
Forgot a couple continues
author
Daniel Martí
<mvdan@mvdan.cc>
Fri, 6 Dec 2013 20:31:47 +0000
(21:31 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Fri, 6 Dec 2013 20:31:47 +0000
(21:31 +0100)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index 298eb39d099ab395937cac9235dd82276cc0fd33..e1713d5f0dea1b63571910d8de282fc422028eff 100644
(file)
--- a/
fdroidserver/common.py
+++ b/
fdroidserver/common.py
@@
-84,6
+84,7
@@
def read_config(opts, config_file='config.py'):
for key in ('mvn3', 'gradle'):
if key not in config:
print "WARNING: %s not set in config" % key
+ continue
val = config[key]
executable = find_executable(val)
if not executable:
@@
-94,6
+95,7
@@
def read_config(opts, config_file='config.py'):
for key in ('sdk_path', 'ndk_path', 'build_tools'):
if key not in config:
print "WARNING: %s not set in config" % key
+ continue
val = config[key]
if key == 'build_tools':
val = os.path.join(config['sdk_path'], 'build-tools', val)