From e48ceef4a69dda2fed6737a03cd81c3717dfc573 Mon Sep 17 00:00:00 2001 From: cytopia Date: Fri, 25 Mar 2022 00:37:53 +0100 Subject: [PATCH] Fix Makefile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index b57895e..29f2ec2 100644 --- a/Makefile +++ b/Makefile @@ -269,7 +269,7 @@ check-current-image-exists: exit 1; \ else \ echo "OK: Image $(IMAGE):$(DOCKER_TAG) is of arch $${OS}/$${ARCH}"; \ - fi; + fi ### ### Checks if parent image exists and is of correct architecture @@ -300,7 +300,7 @@ check-parent-image-exists: >&2 echo "This is a safeguard to not automatically pull the Docker image."; \ >&2 echo; \ exit 1; \ - fi \ + fi; \ OS="$$( docker image inspect $(IMAGE):$(MODS_TAG) --format '{{.Os}}' )"; \ ARCH="$$( docker image inspect $(IMAGE):$(MODS_TAG) --format '{{.Architecture}}' )"; \ if [ "$${OS}/$${ARCH}" != "$(ARCH)" ]; then \ @@ -316,7 +316,7 @@ check-parent-image-exists: >&2 echo "This is a safeguard to not automatically pull the Docker image."; \ >&2 echo; \ exit 1; \ - fi \ + fi; \ OS="$$( docker image inspect $(IMAGE):$(BASE_TAG) --format '{{.Os}}' )"; \ ARCH="$$( docker image inspect $(IMAGE):$(BASE_TAG) --format '{{.Architecture}}' )"; \ if [ "$${OS}/$${ARCH}" != "$(ARCH)" ]; then \