mirror of
https://github.com/yogeshpaliyal/KeyPass.git
synced 2025-12-31 00:59:51 -06:00
17 lines
345 B
Bash
Executable File
17 lines
345 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
echo "*******************************"
|
|
echo "Running git pre-commit hook"
|
|
echo "*******************************"
|
|
|
|
# Run Spotless
|
|
./gradlew spotlessApply
|
|
./gradlew spotlessKotlinApply
|
|
|
|
# Check if lint found any errors
|
|
if [[ $? -ne 0 ]]; then
|
|
echo "Spotless found some errors. Please fix them before committing."
|
|
exit 1
|
|
fi
|
|
|