mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 23:42:37 +03:00
Fix default update= on ant builds
This commit is contained in:
parent
bf8518ee8f
commit
a566ee4475
2 changed files with 2 additions and 2 deletions
|
@ -1455,7 +1455,7 @@ def prepare_source(vcs, app, build, build_dir, srclib_dir, extlib_dir, onserver=
|
|||
(app.id, build.version), p.output)
|
||||
|
||||
# Generate (or update) the ant build file, build.xml...
|
||||
if build.update and build.update != ['no'] and build.method() == 'ant':
|
||||
if build.method() == 'ant' and build.update != ['no']:
|
||||
parms = ['android', 'update', 'lib-project']
|
||||
lparms = ['android', 'update', 'project']
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue