From 98be3f2aab7399bb3a65ddbbfd206cfd863cb4a7 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 e7111551b..23fd900fa 100644 --- a/Makefile +++ b/Makefile @@ -82,6 +82,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