From 424cc20e8446c016d9e0c56d950c1534ef3a20e0 Mon Sep 17 00:00:00 2001 From: Burak Yigit Kaya Date: Thu, 18 Jul 2019 11:42:33 +0300 Subject: [PATCH] fix(Makefile): Bring back the new lines from messages (#219) Follow up to #218. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9a0eaab..ac75682 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,15 @@ OK_COLOR=\033[32;01m NO_COLOR=\033[0m build: - @printf "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)" + @printf "$(OK_COLOR)==>$(NO_COLOR) Building $(REPOSITORY):$(TAG)\n" @docker build --pull --rm -t $(REPOSITORY):$(TAG) . --build-arg IMAGE=sentry:9.1 $(REPOSITORY)_$(TAG).tar: build - @printf "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@" + @printf "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@\n" @docker save $(REPOSITORY):$(TAG) > $@ push: build - @printf "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)" + @printf "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)\n" @docker push $(REPOSITORY):$(TAG) all: build push