From 415ac526d325d1bd772774811acddfb03c7a20e5 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Sun, 29 Sep 2024 15:18:11 -0400 Subject: [PATCH] fix: update proto breaking check target to master branch --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 94e3268b0..41186c5b9 100644 --- a/Makefile +++ b/Makefile @@ -195,14 +195,11 @@ proto-format: @echo "Formatting Protobuf files" @$(protoImage) find ./ -name "*.proto" -exec clang-format -i {} \; -proto-swagger-gen: - @./scripts/protoc-swagger-gen.sh - proto-lint: @$(protoImage) buf lint --error-format=json proto-check-breaking: - @$(protoImage) buf breaking --against $(HTTPS_GIT)#branch=main + @$(protoImage) buf breaking --against $(HTTPS_GIT)#branch=master .PHONY: all install install-debug \ go-mod-cache draw-deps clean build format \