From 5c4c34613d92b19c24f619a9a70035d5c95955af Mon Sep 17 00:00:00 2001 From: Matt Robenolt Date: Fri, 3 Jun 2016 14:54:36 -0700 Subject: [PATCH] Default `make all` to `build` and `push` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3c98cbf..57d2721 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ $(REPOSITORY)_$(TAG).tar: build @echo "$(OK_COLOR)==>$(NO_COLOR) Saving $(REPOSITORY):$(TAG) > $@" @docker save $(REPOSITORY):$(TAG) > $@ -push: +push: build @echo "$(OK_COLOR)==>$(NO_COLOR) Pushing $(REPOSITORY):$(TAG)" @docker push $(REPOSITORY):$(TAG) -all: build $(REPOSITORY)_$(TAG).tar +all: build push .PHONY: all build push