Skip to content

Instantly share code, notes, and snippets.

@aykuttasil
Created November 8, 2019 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aykuttasil/fe617067dda4da32f6fa9ac753d54c09 to your computer and use it in GitHub Desktop.
Save aykuttasil/fe617067dda4da32f6fa9ac753d54c09 to your computer and use it in GitHub Desktop.
Git Hooks
#!/bin/sh
echo "Running ktlintFormat"
./gradlew ktlintFormat
result=$?
if [ "$result" = 0 ] ; then
echo "ktlintFormat found no problems"
exit 0
else
echo
"Problems found, files will not be committed."
exit 1
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment