mirror of
https://gitlab.com/fdroid/fdroiddata.git
synced 2025-11-01 01:26:05 +01:00
14 lines
255 B
Bash
Executable file
14 lines
255 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
# Redirect output to stderr.
|
|
exec 1>&2
|
|
|
|
apps="$(git diff --cached --name-only --diff-filter=ACM | sed -n 's,metadata/\([^/]*\)\.yml,\1,p')"
|
|
|
|
if [[ -n "$apps" ]]; then
|
|
fdroid lint -f $apps
|
|
fi
|