From a55b6ed9be223068337e769a50af3c98784157e4 Mon Sep 17 00:00:00 2001 From: Robert Zaremba Date: Mon, 7 Jun 2021 16:45:55 +0200 Subject: [PATCH] fix: make proto-format (#9470) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 92a472da4..12fbae141 100644 --- a/Makefile +++ b/Makefile @@ -403,7 +403,7 @@ proto-swagger-gen: proto-format: @echo "Formatting Protobuf files" @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoFmt}$$"; then docker start -a $(containerProtoFmt); else docker run --name $(containerProtoFmt) -v $(CURDIR):/workspace --workdir /workspace tendermintdev/docker-build-proto \ - find ./ -not -path "./third_party/*" -name *.proto -exec clang-format -i {} \; ; fi + find ./ -not -path "./third_party/*" -name "*.proto" -exec clang-format -i {} \; ; fi proto-lint: