This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit 2ec977514d977f5c6e23ec69a4ef5bb464a66ae7 Author: Luca Burgazzoli <[email protected]> AuthorDate: Wed Nov 24 14:51:41 2021 +0100 chore(lint): as the lint target is not used in CI, switch to a simple and less verbose output format --- script/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script/Makefile b/script/Makefile index 6e2fa27..10660ec 100644 --- a/script/Makefile +++ b/script/Makefile @@ -273,10 +273,10 @@ dep: go mod tidy lint: - GOGC=$(LINT_GOGC) golangci-lint run --verbose --deadline $(LINT_DEADLINE) + GOGC=$(LINT_GOGC) golangci-lint run --out-format tab --deadline $(LINT_DEADLINE) lint-fix: - GOGC=$(LINT_GOGC) golangci-lint run --verbose --deadline $(LINT_DEADLINE) --fix + GOGC=$(LINT_GOGC) golangci-lint run --out-format tab --deadline $(LINT_DEADLINE) --fix check-licenses:
