From 492aa473626a7f2495aef522ca1106246677aa56 Mon Sep 17 00:00:00 2001 From: Michael Gielda Date: Fri, 16 Dec 2022 08:07:05 -0800 Subject: [PATCH] Fix typo in Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c967142..af5a7d0 100644 --- a/Makefile +++ b/Makefile @@ -93,7 +93,7 @@ ensure-git-clean: ## Ensure git is clean .PHONY: bump-version previousVersion=$(shell head -n 1 ./VERSION) bump-version: ensure-git-clean ## Bump images version for docker-compose - @for targe in $(TARGETS); do \ + @for target in $(TARGETS); do \ for registry in $(REGISTRIES); do \ image=$${registry}$(IMAGE_PREFIX)$${target}$(IMAGE_SUFFIX):$(VERSION); \ $(SED) -i "s#$(image):$(previousVersion)#$(image):$(VERSION)#g" docker-compose.yaml; \