1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-06 11:00:13 +02:00

Support ':' in names/autonames

This commit is contained in:
Daniel Martí 2014-02-05 15:33:20 +01:00
parent 18deea2ac8
commit e81d1da774

View File

@ -46,9 +46,9 @@ while read line; do
name= autoname= name= autoname=
while read l; do while read l; do
if [[ "$l" == "Auto Name:"* ]]; then if [[ "$l" == "Auto Name:"* ]]; then
autoname=${l##*:} autoname=${l#*:}
elif [[ "$l" == "Name:"* ]]; then elif [[ "$l" == "Name:"* ]]; then
name=${l##*:} name=${l#*:}
fi fi
done < "$file" done < "$file"