mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 16:02:33 +03:00
Fix failure to do anything when ndk_path is not defined
This commit is contained in:
parent
1d6b2378db
commit
327422af09
1 changed files with 2 additions and 2 deletions
|
@ -41,8 +41,8 @@ env = None
|
||||||
|
|
||||||
def get_default_config():
|
def get_default_config():
|
||||||
return {
|
return {
|
||||||
'sdk_path': os.getenv("ANDROID_HOME"),
|
'sdk_path': os.getenv("ANDROID_HOME") or "",
|
||||||
'ndk_path': os.getenv("ANDROID_NDK"),
|
'ndk_path': os.getenv("ANDROID_NDK") or "",
|
||||||
'build_tools': "20.0.0",
|
'build_tools': "20.0.0",
|
||||||
'ant': "ant",
|
'ant': "ant",
|
||||||
'mvn3': "mvn",
|
'mvn3': "mvn",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue