1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00
fdroidserver/tools/commitupdates
2013-09-18 00:11:35 +02:00

41 lines
984 B
Bash
Executable File

#!/bin/bash
# Commits updates to apps, allowing you to edit the commit messages
commands=()
while read line; do
if [[ "$line" == *M*metadata/*.txt ]]; then
file=${line##* }
newbuild=0
while read l; do
if [[ "$l" == "+Build Version:"* ]]; then
newbuild=1
build=${l#*:}
version=${build%%,*}
build=${build#*,}
vercode=${build%%,*}
fi
done < <(git diff HEAD -- "$file")
[ $newbuild -eq 0 ] && continue
while read l; do
[[ "$l" == "Auto Name:"* ]] && name=${l##*:}
done < "$file"
id=${file##*/}
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)
for cmd in "${commands[@]}"; do
eval "$cmd"
done