mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-01-25 07:47:51 -05:00
Also strip comma-separated build flags
This commit is contained in:
@@ -504,7 +504,7 @@ def parse_metadata(metafile):
|
||||
t = flagtype(pk)
|
||||
if t == 'list':
|
||||
# Port legacy ';' separators
|
||||
thisbuild[pk] = pv.replace(';',',').split(',')
|
||||
thisbuild[pk] = [v.strip() for v in pv.replace(';',',').split(',')]
|
||||
elif t == 'string':
|
||||
thisbuild[pk] = pv
|
||||
elif t == 'script':
|
||||
|
||||
Reference in New Issue
Block a user