chiark
/
gitweb
/
~ianmdlvl
/
fdroidserver.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
24a8523
)
Properly capitalize all flavours (fixes org.ligi.fast)
author
Daniel Martí
<mvdan@mvdan.cc>
Mon, 5 Jan 2015 12:07:22 +0000
(13:07 +0100)
committer
Daniel Martí
<mvdan@mvdan.cc>
Mon, 5 Jan 2015 12:07:22 +0000
(13:07 +0100)
fdroidserver/build.py
patch
|
blob
|
history
diff --git
a/fdroidserver/build.py
b/fdroidserver/build.py
index af984a2c8eb7dce50e834f3ab52f7e506b17b7d8..45d6f3ed09f1d6e6b8a1013917bf29df2e17c711 100644
(file)
--- a/
fdroidserver/build.py
+++ b/
fdroidserver/build.py
@@
-500,9
+500,7
@@
def build_local(app, thisbuild, vcs, build_dir, output_dir, srclib_dir, extlib_d
if flavours == ['yes']:
flavours = []
- flavours_cmd = ''.join(flavours)
- if flavours_cmd:
- flavours_cmd = capitalize_intact(flavours_cmd)
+ flavours_cmd = ''.join([capitalize_intact(f) for f in flavours])
gradletasks += ['assemble' + flavours_cmd + 'Release']