From f5caa7023c6b6b9a46a9ef6f51bf77e29b0d083f Mon Sep 17 00:00:00 2001
From: Adriaan de Beer <adriaan@spaceadvisory.com>
Date: Wed, 30 Sep 2020 13:25:29 +0000
Subject: [PATCH] ST-456 bubble up exit status fix

---
 charts/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/charts/Makefile b/charts/Makefile
index 42546428..2409a678 100644
--- a/charts/Makefile
+++ b/charts/Makefile
@@ -140,8 +140,8 @@ test: ## test the application on K8s
 		perl -ne 'BEGIN {$$on=0;}; if (index($$_, "~~~~BOUNDARY~~~~")!=-1){$$on+=1;next;}; print if $$on % 2;' | \
 		base64 -d | tar -xzf -; \
 		kubectl --namespace $(KUBE_NAMESPACE) delete pod $(TEST_RUNNER); \
-		rm ../post-deployment/tango_values.yaml
-		echo $$status
+		rm ../post-deployment/tango_values.yaml; \
+		echo "Status set at $$status"; \
 		exit $$status
 
 show:
-- 
GitLab