fix(make): fix license check

An error in the way license checks are evaluated is causing CI failures.

Closes #1856
pull/1857/head
Matt Butcher 9 years ago
parent 7389b341c7
commit ec7eb31f86
No known key found for this signature in database
GPG Key ID: DCD5F5E5EF32C345

@ -17,10 +17,9 @@ set -euo pipefail
IFS=$'\n\t' IFS=$'\n\t'
find_files() { find_files() {
find . -not \( \ find ./_proto ./cmd ./pkg ./scripts ./rootfs ./docs -not \( \
\( \ \( \
-wholename './vendor' \ -wholename './pkg/proto' \
-o -wholename './pkg/proto' \
-o -wholename '*testdata*' \ -o -wholename '*testdata*' \
\) -prune \ \) -prune \
\) \ \) \

Loading…
Cancel
Save