From 84432d7c54e15db60d8a07ad1a8d80815e2bc7c5 Mon Sep 17 00:00:00 2001 From: RA489 Date: Thu, 4 Apr 2019 13:28:01 +0530 Subject: [PATCH] update-context is confusing with profiles --- cmd/minikube/cmd/update-context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/minikube/cmd/update-context.go b/cmd/minikube/cmd/update-context.go index c2e9c0b78aa5..3ded75cbff84 100644 --- a/cmd/minikube/cmd/update-context.go +++ b/cmd/minikube/cmd/update-context.go @@ -49,9 +49,9 @@ var updateContextCmd = &cobra.Command{ exit.WithError("update config", err) } if updated { - console.OutStyle("celebrate", "IP has been updated to point at %s", ip) + console.OutStyle("celebrate", "%s IP has been updated to point at %s", machineName, ip) } else { - console.OutStyle("meh", "IP was already correctly configured for %s", ip) + console.OutStyle("meh", "%s IP was already correctly configured for %s", machineName, ip) } },