From c7233ab824f2052ce4a5202913718a1159246f23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20K=C3=A4ldstr=C3=B6m?= Date: Thu, 21 Apr 2016 00:05:02 +0300 Subject: [PATCH] Fix so make == make push in the kube-cross Makefile --- build/build-image/cross/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/build/build-image/cross/Makefile b/build/build-image/cross/Makefile index 8b0634dc709..bbf4c904862 100644 --- a/build/build-image/cross/Makefile +++ b/build/build-image/cross/Makefile @@ -14,13 +14,14 @@ .PHONY: build push -IMAGE = kube-cross -TAG = $(shell cat VERSION) +IMAGE=kube-cross +TAG=$(shell cat VERSION) + + +all: push build: docker build -t gcr.io/google_containers/$(IMAGE):$(TAG) . push: build gcloud docker --server=gcr.io push gcr.io/google_containers/$(IMAGE):$(TAG) - -all: push