mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-27 20:38:04 +00:00
* build: add a pre-push task and Gradle task to install it * Document `installGitHooks` in contributing.md
10 lines
133 B
Bash
10 lines
133 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
GRADLE_EXEC="${GRADLE_EXEC:-./gradlew}"
|
|
|
|
"${GRADLE_EXEC}" spotlessCheck apiCheck
|