mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Fix typo in fd-commit
This commit is contained in:
parent
d5859fab32
commit
61dca767f4
1 changed files with 2 additions and 1 deletions
|
|
@ -62,6 +62,7 @@ while read line; do
|
||||||
|
|
||||||
onlybuild=true
|
onlybuild=true
|
||||||
newbuild=false
|
newbuild=false
|
||||||
|
disable=false
|
||||||
while read l; do
|
while read l; do
|
||||||
if [[ "$l" == "-Build:"* ]]; then
|
if [[ "$l" == "-Build:"* ]]; then
|
||||||
onlybuild=false
|
onlybuild=false
|
||||||
|
|
@ -74,7 +75,7 @@ while read line; do
|
||||||
version=${build%%,*}
|
version=${build%%,*}
|
||||||
build=${build#*,}
|
build=${build#*,}
|
||||||
vercode=${build%%,*}
|
vercode=${build%%,*}
|
||||||
elif $newbuild && $onlybuild [[ "$l" == "+"*"disable="* ]]; then
|
elif $newbuild && $onlybuild && [[ "$l" == "+"*"disable="* ]]; then
|
||||||
disable=true
|
disable=true
|
||||||
fi
|
fi
|
||||||
done < <(git diff HEAD -- "$file")
|
done < <(git diff HEAD -- "$file")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue