From 13e151e416eaa5890065d69a8503018d2764fad3 Mon Sep 17 00:00:00 2001
From: Steve Wilkerson <wilkers.steve@gmail.com>
Date: Wed, 26 Apr 2017 12:03:37 -0500
Subject: [PATCH] Add newlines to Makefile output to improve readability

Currently, the Makefile's output prints without newlines between
running helm * commands against our charts. This can make it
difficult to parse output at a glance. This adds newlines before
and after the helm commands against charts, making output more
readable

Change-Id: I8977f3ab69322bab8924ff09fcb3c5fa84b9b13b
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 218bf2516c..a54c2b8330 100644
--- a/Makefile
+++ b/Makefile
@@ -60,7 +60,9 @@ clean:
 	echo "Removed all .b64, _partials.tpl, and _globals.tpl files"
 
 build-%:
+	@echo
 	if [ -f $*/Makefile ]; then make -C $*; fi
 	if [ -f $*/requirements.yaml ]; then helm dep up $*; fi
 	helm lint $*
 	helm package $*
+	@echo