mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
Fix very silly typo that broke all apps using buildjni
This commit is contained in:
parent
1a11982897
commit
22f4ed4b7a
1 changed files with 1 additions and 1 deletions
|
|
@ -816,7 +816,7 @@ def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
|
|||
nativecode = None if not nativecode else nativecode
|
||||
|
||||
if thisbuild['buildjni'] and thisbuild['buildjni'] != ['no']:
|
||||
if nativecode is not None:
|
||||
if nativecode is None:
|
||||
raise BuildException("Native code should have been built but none was packaged")
|
||||
if thisbuild['novcheck']:
|
||||
vercode = thisbuild['vercode']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue