From f72b36916e197518b77bafab8f0773b73a73dbdc Mon Sep 17 00:00:00 2001 From: tycho garen Date: Fri, 24 Jun 2022 14:17:26 -0400 Subject: [PATCH] cleanup --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 39306af7a..9636db361 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,7 @@ endif LD_FLAGS = -X github.com/tendermint/tendermint/version.TMCoreSemVer=$(VERSION) BUILD_FLAGS = -mod=readonly -ldflags "$(LD_FLAGS)" HTTPS_GIT := https://github.com/tendermint/tendermint.git +DOCKER_BUF := docker run -v $(shell pwd):/workspace --workdir /workspace bufbuild/buf CGO_ENABLED ?= 0 # handle nostrip @@ -113,7 +114,7 @@ proto-format: check-proto-format-deps .PHONY: proto-format proto-check-breaking-ci: - @go run github.com/bufbuild/buf/cmd/buf breaking --against ".git"#branch=v0.34.x + @go run github.com/bufbuild/buf/cmd/buf breaking --against $(HTTPS_GIT)#branch=v0.34.x .PHONY: proto-check-breaking-ci ###############################################################################