summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJohn Olheiser <john.olheiser@gmail.com>2023-04-06 13:58:05 -0500
committerGitHub <noreply@github.com>2023-04-06 13:58:05 -0500
commit797babbfcbcf845fe12c8659fffa1693ec4708bb (patch)
tree575134942a2381bfcbd6386f3a81a1882418a400 /Makefile
parentbbf83f5d4bd8dbe1cd6dbcf7b45ef47072e5add0 (diff)
downloadgitea-797babbfcbcf845fe12c8659fffa1693ec4708bb.tar.gz
gitea-797babbfcbcf845fe12c8659fffa1693ec4708bb.zip
Remove -v from vulncheck (#23953)
We should think about locking this dep, but for now this should get builds going again.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6dedea12cc..56ac44eb11 100644
--- a/Makefile
+++ b/Makefile
@@ -747,7 +747,7 @@ generate-go: $(TAGS_PREREQ)
.PHONY: security-check
security-check:
- go run $(GOVULNCHECK_PACKAGE) -v ./...
+ go run $(GOVULNCHECK_PACKAGE) ./...
$(EXECUTABLE): $(GO_SOURCES) $(TAGS_PREREQ)
CGO_CFLAGS="$(CGO_CFLAGS)" $(GO) build $(GOFLAGS) $(EXTRA_GOFLAGS) -tags '$(TAGS)' -ldflags '-s -w $(LDFLAGS)' -o $@