From 53ece895af5df63d3d3cc179657dff45c4917db4 Mon Sep 17 00:00:00 2001 From: Akshay Shah Date: Fri, 25 Aug 2023 21:22:49 -0400 Subject: [PATCH] Remove extra protobuf formatting check In `make lint`, we were running `buf format -d` twice. This PR removes the more awkward invocation - I think it preceded the `--exit-code` flag. --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 59c2143d..54bcf609 100644 --- a/Makefile +++ b/Makefile @@ -40,7 +40,6 @@ install: ## Install all binaries .PHONY: lint lint: $(BIN)/golangci-lint $(BIN)/buf ## Lint Go and protobuf - test -z "$$($(BIN)/buf format -d . | tee /dev/stderr)" go vet ./... golangci-lint run buf lint