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:
1d6b237
)
Fix failure to do anything when ndk_path is not defined
author
Ciaran Gultnieks
<ciaran@ciarang.com>
Thu, 3 Jul 2014 07:56:48 +0000
(08:56 +0100)
committer
Ciaran Gultnieks
<ciaran@ciarang.com>
Thu, 3 Jul 2014 07:56:56 +0000
(08:56 +0100)
fdroidserver/common.py
patch
|
blob
|
history
diff --git
a/fdroidserver/common.py
b/fdroidserver/common.py
index 34739c5b807f22d37f1db9a0672524bc03e70491..a26716ae1989d5cad9c5f0461a6eee5218c1571c 100644
(file)
--- a/
fdroidserver/common.py
+++ b/
fdroidserver/common.py
@@
-41,8
+41,8
@@
env = None
def get_default_config():
return {
- 'sdk_path': os.getenv("ANDROID_HOME"),
- 'ndk_path': os.getenv("ANDROID_NDK"),
+ 'sdk_path': os.getenv("ANDROID_HOME")
or ""
,
+ 'ndk_path': os.getenv("ANDROID_NDK")
or ""
,
'build_tools': "20.0.0",
'ant': "ant",
'mvn3': "mvn",