support localized files and graphics in git pre-commit hook

This commit is contained in:
Hans-Christoph Steiner 2017-05-30 10:52:35 +02:00
parent 74696ba2ac
commit 24e96be6d0
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ set -o pipefail
# Redirect output to stderr.
exec 1>&2
apps="$(git diff --cached --name-only --diff-filter=ACM | sed -n 's@metadata/\(.*\).txt@\1@p')"
apps="$(git diff --cached --name-only --diff-filter=ACM | sed -n 's,metadata/\([^/]*\)\.txt,\1,p')"
if [[ -n "$apps" ]]; then
fdroid lint -f $apps
fdroid lint -f $apps
fi