From 9e2bb59afc56af385621b463936f188f332cd7a2 Mon Sep 17 00:00:00 2001
From: Nitesh Konkar <niteshkonkar@in.ibm.com>
Date: Wed, 16 May 2018 15:21:04 +0530
Subject: [PATCH] Add push-manifest into all target in the image-user Makefile

Fixes #310

Signed-off-by: Nitesh Konkar <niteshkonkar@in.ibm.com>
---
 images/image-user/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/images/image-user/Makefile b/images/image-user/Makefile
index 9fc5341d42..1da9dcddda 100644
--- a/images/image-user/Makefile
+++ b/images/image-user/Makefile
@@ -15,14 +15,14 @@
 include ../../hack/make-rules/Makefile.manifest
 include ../../hack/make-rules/BASEIMAGES
 
-.PHONY: all test-image-user-uid test-image-user-username test-image-user-uid-group test-image-user-username-group
+.PHONY: all test-image-user-uid test-image-user-username test-image-user-uid-group test-image-user-username-group push-manifest
 
 REGISTRY = gcr.io/cri-tools
 ALL_ARCH = amd64 arm arm64 ppc64le s390x
 TAG = latest
 IMAGES_LIST = test-image-user-uid test-image-user-username test-image-user-uid-group test-image-user-username-group
 
-all: test-image-user-uid test-image-user-username test-image-user-uid-group test-image-user-username-group
+all: test-image-user-uid test-image-user-username test-image-user-uid-group test-image-user-username-group push-manifest
 
 test-image-user-uid:
 	$(foreach arch,$(ALL_ARCH),docker build . -t $(REGISTRY)/$@-$(arch) --build-arg ARCH=$($(arch)) --build-arg USER=1002;)