From af2d805f32860e42a2398a29d1037c56e67bcabe Mon Sep 17 00:00:00 2001 From: Jamin Collins Date: Mon, 15 Jul 2019 18:08:17 -0600 Subject: [PATCH] fix(Makefile): -e needed for color codes (#215) closes #214 Signed-off-by: Jamin W. Collins --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 20a7521..0ab7e43 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,15 @@ OK_COLOR=\033[32;01m NO_COLOR=\033[0m build: - @echo "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)" + @echo -e "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)" @docker build --pull --rm -t $(REPOSITORY):$(TAG) . $(REPOSITORY)_$(TAG).tar: build - @echo "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@" + @echo -e "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@" @docker save $(REPOSITORY):$(TAG) > $@ push: build - @echo "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)" + @echo -e "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)" @docker push $(REPOSITORY):$(TAG) all: build push