diff --git a/hack/test-go.sh b/hack/test-go.sh index 087478f78a2..d70d4cf1061 100755 --- a/hack/test-go.sh +++ b/hack/test-go.sh @@ -25,11 +25,11 @@ find_test_dirs() { find . -not \( \ \( \ -wholename './third_party' \ - -wholename './Godeps' \ + -wholename './Godeps' \ -o -wholename './release' \ -o -wholename './target' \ -o -wholename '*/third_party/*' \ - -o -wholename '*/Godeps/*' \ + -o -wholename '*/Godeps/*' \ -o -wholename '*/output/*' \ \) -prune \ \) -name '*_test.go' -print0 | xargs -0n1 dirname | sort -u | xargs -n1 printf "${KUBE_GO_PACKAGE}/%s\n"