Makefile: make revive check independent of build tags

Signed-off-by: Sven Anderson <sven@redhat.com>
This commit is contained in:
Sven Anderson 2022-02-07 23:58:05 +01:00 committed by mergify[bot]
parent 4c8fb2d210
commit 63ae1fcbde
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ check-format:
check-revive:
# Configure project's revive checks using .revive.toml
# See: https://github.com/mgechev/revive
revive -config .revive.toml $$($(GO_CMD) list ./... | grep -v /vendor/)
revive -config .revive.toml $$(find . -name '*.go')
# Do a quick compile only check of the tests and impliclity the
# library code as well.