mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
Merge branch 'fix_ndk_not_found' into 'master'
Raise exception if the given NDK was not found See merge request fdroid/fdroidserver!1054
This commit is contained in:
commit
0fb772fb8c
1 changed files with 2 additions and 0 deletions
|
@ -4302,6 +4302,8 @@ def _install_ndk(ndk):
|
|||
url = ndkdict['url']
|
||||
sha256 = ndkdict['sha256']
|
||||
break
|
||||
else:
|
||||
raise FDroidException("NDK %s not found" % ndk)
|
||||
ndk_base = os.path.join(config['sdk_path'], 'ndk')
|
||||
logging.info(_('Downloading %s') % url)
|
||||
zipball = os.path.join(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue