From f16bd23f217b01a9ca81cd4d1a1e253ce22d67bc Mon Sep 17 00:00:00 2001 From: Sreejith Punnapuzha Date: Wed, 28 Oct 2020 09:07:55 -0500 Subject: [PATCH] Fix Makefile for bootstrap_capg image This commit fixed the image name in docker push for bootstrap_capg image Change-Id: Ibf36d831315a3f107a016f24cc482fe87ad7004f Signed-off-by: Sreejith Punnapuzha --- bootstrap_capg/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap_capg/Makefile b/bootstrap_capg/Makefile index 7a71ac2..181e5e2 100644 --- a/bootstrap_capg/Makefile +++ b/bootstrap_capg/Makefile @@ -36,7 +36,7 @@ images: Dockerfile \ --tag $(DOCKER_IMAGE) \ --force-rm=$(DOCKER_FORCE_CLEAN) ifeq ($(PUSH_IMAGE), true) - docker push $(IMAGE) + docker push $(DOCKER_IMAGE) endif .PHONY: clean