Skip to content

Commit

Permalink
fix(Makefile): Bring back the new lines from messages (getsentry#219)
Browse files Browse the repository at this point in the history
Follow up to getsentry#218.
  • Loading branch information
BYK authored Jul 18, 2019
1 parent 0fd0379 commit 424cc20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 424cc20

Please sign in to comment.