Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

12 lines
164 B
Bash

#!/bin/bash
echo "Running git pre-commit hook"
./gradlew ktlintFormat
RESULT=$?
# return 1 exit code if running checks fails
[ $RESULT -ne 0 ] && exit 1
exit 0