mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 15:32:30 +03:00
Never let build['ndk_path'] be None
This commit is contained in:
parent
e9be413d3c
commit
3645471a1c
2 changed files with 3 additions and 3 deletions
|
@ -188,8 +188,8 @@ def get_ndk_path(version):
|
|||
version = 'r10d' # latest
|
||||
paths = config['ndk_paths']
|
||||
if version not in paths:
|
||||
return None
|
||||
return paths[version]
|
||||
return ''
|
||||
return paths[version] or ''
|
||||
|
||||
|
||||
def find_sdk_tools_cmd(cmd):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue