From 68287a9497b2370265d842e1fb1659c8ce30455c Mon Sep 17 00:00:00 2001 From: Narendra Kangralkar Date: Fri, 4 Jan 2019 22:13:33 +0530 Subject: [PATCH] issue# 3499: minikube status missing newline at end of output Done code changes to display newline at the end of the status message --- cmd/minikube/cmd/status.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/minikube/cmd/status.go b/cmd/minikube/cmd/status.go index 23dc2b20ea32..c7cd90266793 100644 --- a/cmd/minikube/cmd/status.go +++ b/cmd/minikube/cmd/status.go @@ -111,7 +111,7 @@ var statusCmd = &cobra.Command{ cmdUtil.MaybeReportErrorAndExitWithCode(err, internalErrorCode) } if ks { - kubeconfigSt = "Correctly Configured: pointing to minikube-vm at " + ip.String() + kubeconfigSt = "Correctly Configured: pointing to minikube-vm at " + ip.String() + "\n" } else { kubeconfigSt = "Misconfigured: pointing to stale minikube-vm." + "\nTo fix the kubectl context, run minikube update-context"