Skip to content

Commit 6629cea

Browse files
committedMar 29, 2024·
ci: fix invalid error cause by make vet.
1 parent f61549d commit 6629cea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎GNUmakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ testacc: fmtcheck
1717

1818
vet:
1919
@echo "go vet ."
20-
@go vet $$(go list ./... | grep -v vendor/) ; if [ $$? -eq 1 ]; then \
20+
@go vet $$(go list ./... | grep -v scripts | grep -v vendor/) ; if [ $$? -eq 1 ]; then \
2121
echo ""; \
2222
echo "Vet found suspicious constructs. Please check the reported constructs"; \
2323
echo "and fix them if necessary before submitting the code for review."; \

0 commit comments

Comments
 (0)
Please sign in to comment.