diff options
author | John Olheiser <john.olheiser@gmail.com> | 2023-04-06 13:58:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-06 13:58:05 -0500 |
commit | 797babbfcbcf845fe12c8659fffa1693ec4708bb (patch) | |
tree | 575134942a2381bfcbd6386f3a81a1882418a400 /Makefile | |
parent | bbf83f5d4bd8dbe1cd6dbcf7b45ef47072e5add0 (diff) | |
download | gitea-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 $@ |