mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +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():
|
||||
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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue