mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-12 18:20:29 +03:00
Properly empty all fd-commit vars
This commit is contained in:
parent
34470eaa2b
commit
a5dca3013f
1 changed files with 6 additions and 2 deletions
|
|
@ -25,9 +25,13 @@ while read line; do
|
||||||
$found || continue
|
$found || continue
|
||||||
fi
|
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
|
while read l; do
|
||||||
if [[ "$l" == "Auto Name:"* ]]; then
|
if [[ "$l" == "Auto Name:"* ]]; then
|
||||||
autoname=${l##*:}
|
autoname=${l##*:}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue