-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpre-commit
33 lines (29 loc) · 1.07 KB
/
pre-commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
echo "*********************************************************"
echo "Running git pre-commit hook. Running Spotless Apply... "
echo "*********************************************************"
# Gather the staged files - to make sure changes are saved only for these files.
stagedFiles=$(git diff --staged --name-only)
# run spotless apply
./gradlew spotlessApply
status=$?
if [ "$status" = 0 ] ; then
echo "Static analysis found no problems."
# Add staged file changes to git
for file in $stagedFiles; do
if test -f "$file"; then
git add $file
fi
done
#Exit
exit 0
else
echo "*********************************************************"
echo " ******************************************** "
echo 1>&2 "Spotless Apply found violations it could not fix."
echo "Run spotless apply in your terminal and fix the issues before trying to commit again."
echo " ******************************************** "
echo "*********************************************************"
#Exit
exit 1
fi