mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 15:00:30 +03:00
fix local var name overloading when iterating build flavours
This commit is contained in:
parent
c15f02ed68
commit
0fda23ef80
1 changed files with 1 additions and 1 deletions
|
|
@ -590,7 +590,7 @@ def build_local(app, build, vcs, build_dir, output_dir, log_dir, srclib_dir, ext
|
||||||
if flavours == ['yes']:
|
if flavours == ['yes']:
|
||||||
flavours = []
|
flavours = []
|
||||||
|
|
||||||
flavours_cmd = ''.join([capitalize_intact(f) for f in flavours])
|
flavours_cmd = ''.join([capitalize_intact(flav) for flav in flavours])
|
||||||
|
|
||||||
gradletasks += ['assemble' + flavours_cmd + 'Release']
|
gradletasks += ['assemble' + flavours_cmd + 'Release']
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue