Created
February 19, 2020 21:20
-
-
Save ehashman/632d1e34fb7237b517fb4c563523d738 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# .git/hooks/pre-commit | |
if [[ -n `gofmt -s -l pkg cmd test` ]]; then | |
gofmt -s -d pkg cmd test | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment