From d65040fffb6e8df8d56c00bc02e9197ae4d271f0 Mon Sep 17 00:00:00 2001 From: Dan Lorenc Date: Thu, 7 Jul 2016 07:22:05 -0700 Subject: [PATCH] Fix a typo in the notification text. --- pkg/minikube/notify/notify.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/minikube/notify/notify.go b/pkg/minikube/notify/notify.go index 897d1f914c..fdb63e21a9 100644 --- a/pkg/minikube/notify/notify.go +++ b/pkg/minikube/notify/notify.go @@ -64,7 +64,8 @@ func MaybePrintUpdateText(output io.Writer, url string, lastUpdatePath string) { fmt.Fprintf(output, `There is a newer version of minikube available (%s%s). Download it here: %s%s To disable this notification, add WantUpdateNotification: False to the json config file at %s -(you may have to create the file config.json in this folder if you have no previous configuration)\n`, +(you may have to create the file config.json in this folder if you have no previous configuration) +`, version.VersionPrefix, latestVersion, updateLinkPrefix, latestVersion, constants.MakeMiniPath("config")) } }