From ac49ea8bb7694017431af5772cef8d921c666c4e Mon Sep 17 00:00:00 2001 From: Erik Grinaker Date: Sat, 23 Jan 2021 17:46:53 +0100 Subject: [PATCH] Makefile: always pull image in proto-gen-docker. (#5953) The `proto-gen-docker` target didn't pull an updated Docker image, and would use a local image if present which could be outdated and produce wrong results. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 90d651dbf..73bc0923d 100644 --- a/Makefile +++ b/Makefile @@ -94,6 +94,7 @@ proto-gen: .PHONY: proto-gen proto-gen-docker: + @docker pull -q tendermintdev/docker-build-proto @echo "Generating Protobuf files" @docker run -v $(shell pwd):/workspace --workdir /workspace tendermintdev/docker-build-proto sh ./scripts/protocgen.sh .PHONY: proto-gen-docker