Narrow gofmt targets

Disregard _output for gofmt'ing

Signed-off-by: baude <bbaude@redhat.com>

Closes: #77
Approved by: rhatdan
This commit is contained in:
baude
2017-11-27 11:00:47 -06:00
committed by Atomic Bot
parent dd88ce005f
commit 99f905243b

View File

@ -9,7 +9,8 @@ find_files() {
\( \
-wholename '*/vendor/*' \
\) -prune \
\) -name '*.go'
\) -name '*.go' \
-not \( -wholename './_output/*' \)
}
GOFMT="gofmt -s"