summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xhack/verify-gofmt.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/hack/verify-gofmt.sh b/hack/verify-gofmt.sh
index 5577d1b9b..a2efbe1df 100755
--- a/hack/verify-gofmt.sh
+++ b/hack/verify-gofmt.sh
@@ -9,7 +9,8 @@ find_files() {
\( \
-wholename '*/vendor/*' \
\) -prune \
- \) -name '*.go'
+ \) -name '*.go' \
+ -not \( -wholename './_output/*' \)
}
GOFMT="gofmt -s"