Never let build['ndk_path'] be None

This commit is contained in:
Daniel Martí 2015-01-04 20:41:22 +01:00
parent e9be413d3c
commit 3645471a1c
2 changed files with 3 additions and 3 deletions

View file

@ -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):