mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-06 23:40:29 +03:00
Also strip comma-separated build flags
This commit is contained in:
parent
67acf4c3fc
commit
ea4190e241
1 changed files with 1 additions and 1 deletions
|
|
@ -504,7 +504,7 @@ def parse_metadata(metafile):
|
||||||
t = flagtype(pk)
|
t = flagtype(pk)
|
||||||
if t == 'list':
|
if t == 'list':
|
||||||
# Port legacy ';' separators
|
# Port legacy ';' separators
|
||||||
thisbuild[pk] = pv.replace(';',',').split(',')
|
thisbuild[pk] = [v.strip() for v in pv.replace(';',',').split(',')]
|
||||||
elif t == 'string':
|
elif t == 'string':
|
||||||
thisbuild[pk] = pv
|
thisbuild[pk] = pv
|
||||||
elif t == 'script':
|
elif t == 'script':
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue