forked from solo-io/sqoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpre-commit
executable file
·30 lines (24 loc) · 881 Bytes
/
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
#!/bin/sh
# Copyright 2012 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# git gofmt pre-commit hook
#
# To use, store as .git/hooks/pre-commit inside your repository and make sure
# it has execute permissions.
#
# This script does not handle file names that contain spaces.
gofiles=$(git diff --cached --name-only --diff-filter=ACM | grep '\.go$')
[ -z "$gofiles" ] && exit 0
unformatted=$(gofmt -l $gofiles)
badimports=$(goimports -l $gofiles)
[ -z "$unformatted" ] && [ -z "$badimports" ] && exit 0
# Some files are not gofmt'd or goimport'd. Print message and fail.
echo >&2 "Go files must be formatted with gofmt and goimport. Please run:"
for fn in $unformatted; do
echo >&2 " gofmt -w $PWD/$fn"
done
for fn in $badimports; do
echo >&2 " goimports -w $PWD/$fn"
done
exit 1