mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-15 07:22:29 +03:00
Save all commit updates in an array, loop over them later
This commit is contained in:
parent
4ffd3aefa5
commit
c52203f87d
1 changed files with 7 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
commands=()
|
||||
|
||||
while read line; do
|
||||
if [[ "$line" == *M*metadata/*.txt ]]; then
|
||||
file=${line##* }
|
||||
|
@ -25,9 +27,12 @@ while read line; do
|
|||
id=${id%.txt*}
|
||||
[ -d metadata/$id ] && extra=metadata/$id
|
||||
[ -n "$name" ] && id="$name ($id)"
|
||||
|
||||
commands+=("git commit -m 'Update $id to $version ($vercode)' -e -- $file $extra")
|
||||
fi
|
||||
done < <(git status --porcelain)
|
||||
|
||||
echo "> git commit -m \"Update $id to $version ($vercode)\" -e -- $file $extra"
|
||||
git commit -m "Update $id to $version ($vercode)" -e -- $file $extra
|
||||
for cmd in "${commands[@]}"; do
|
||||
eval "$cmd"
|
||||
done
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue