Guest User

Untitled

a guest
Jun 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #!/bin/sh
  2. #
  3. # Add hook scripts to be run before every commit.
  4. # This is called by "git commit" with no arguments. The hook should
  5. # exit with non-zero status after issuing an appropriate message if
  6. # it wants to stop the commit.
  7. #
  8. # To enable this hook save this file in your repo .git/hooks folder
  9.  
  10. # clean and run tests
  11. ./gradlew clean test
  12.  
  13. # run spotlessApply
  14. ./gradlew sA
Add Comment
Please, Sign In to add comment