fix(makefile): skip license check on _ directories

This skips license checks on `./_*`.

See #1641
pull/1728/head
Matt Butcher 9 years ago
parent 5fc020f0a1
commit 7d11b67d36
No known key found for this signature in database
GPG Key ID: DCD5F5E5EF32C345

@ -22,6 +22,7 @@ find_files() {
-wholename './vendor' \
-o -wholename './pkg/proto' \
-o -wholename '*testdata*' \
-o -wholename './_*' \
\) -prune \
\) \
\( -name '*.go' -o -name '*.sh' -o -name 'Dockerfile' \)

Loading…
Cancel
Save