mirror of
https://gitlab.com/fdroid/fdroidserver.git
synced 2024-11-05 23:10:12 +01:00
Fix typo in fd-commit
This commit is contained in:
parent
d5859fab32
commit
61dca767f4
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user