1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-05 18:50:09 +02:00

Properly empty all fd-commit vars

This commit is contained in:
Daniel Martí 2013-12-11 17:18:09 +01:00
parent 34470eaa2b
commit a5dca3013f

View File

@ -25,9 +25,13 @@ while read line; do
$found || continue
fi
[ -d metadata/$id ] && extra=metadata/$id
if [ -d metadata/$id ]; then
extra=metadata/$id
else
extra=
fi
autoname=""
name= autoname=
while read l; do
if [[ "$l" == "Auto Name:"* ]]; then
autoname=${l##*:}