mirror of
https://github.com/f-droid/fdroidserver.git
synced 2026-09-17 17:54:20 -04:00
Also strip comma-separated build flags
This commit is contained in:
1 parent
67acf4c3fc
commit
ea4190e241
1 file changed
+1
-1
@@ -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