mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Support ':' in names/autonames
This commit is contained in:
parent
18deea2ac8
commit
e81d1da774
1 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue