fix: make proto-format (#9470)
This commit is contained in:
parent
f1289d0808
commit
a55b6ed9be
2
Makefile
2
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:
|
||||
|
|
Loading…
Reference in New Issue