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

Fix typo in fd-commit

This commit is contained in:
Daniel Martí 2014-01-28 16:59:27 +01:00
parent d5859fab32
commit 61dca767f4

View File

@ -62,6 +62,7 @@ while read line; do
onlybuild=true
newbuild=false
disable=false
while read l; do
if [[ "$l" == "-Build:"* ]]; then
onlybuild=false
@ -74,7 +75,7 @@ while read line; do
version=${build%%,*}
build=${build#*,}
vercode=${build%%,*}
elif $newbuild && $onlybuild [[ "$l" == "+"*"disable="* ]]; then
elif $newbuild && $onlybuild && [[ "$l" == "+"*"disable="* ]]; then
disable=true
fi
done < <(git diff HEAD -- "$file")