mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-11-05 06:50:29 +03:00
Simpler fd-commit arg logic
This commit is contained in:
parent
62ba9dc07e
commit
905e58f54c
1 changed files with 7 additions and 8 deletions
15
fd-commit
15
fd-commit
|
|
@ -42,14 +42,13 @@ while read line; do
|
|||
id=${id%.txt*}
|
||||
|
||||
if [ $# -gt 0 ]; then
|
||||
found=false
|
||||
for arg in "$@"; do
|
||||
if [ "$id" == "$arg" ]; then
|
||||
found=true
|
||||
break
|
||||
fi
|
||||
done
|
||||
$found || continue
|
||||
case "$@" in
|
||||
*" $id "*) ;; # Middle
|
||||
"$id "*) ;; # Start
|
||||
*" $id") ;; # End
|
||||
"$id") ;; # Alone
|
||||
*) continue ;; # Missing
|
||||
esac
|
||||
fi
|
||||
|
||||
[ -d metadata/$id ] && extra=metadata/$id || extra=
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue