Android-Password-Store/scripts/pre-push-hook.sh
2022-07-17 13:57:22 +05:30

14 lines
334 B
Bash

#!/usr/bin/env bash
set -e
set -u
set -o pipefail
ZERO=$(git hash-object --stdin </dev/null | tr '[0-9a-f]' '0')
GRADLE_EXEC="${GRADLE_EXEC:-./gradlew}"
while read local_ref local_oid remote_ref remote_oid; do
if [ "${local_oid}" != "${ZERO}" ]; then
"${GRADLE_EXEC}" apiCheck detekt spotlessCheck test -PslimTests
fi
done