From 539886eeda71ec39d2e31ad355225b79d1ad1e17 Mon Sep 17 00:00:00 2001 From: clchen Date: Wed, 23 Nov 2016 10:28:23 +0800 Subject: [PATCH] fix msg format --- cmd/util/util.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/util/util.go b/cmd/util/util.go index 8c81a8d2ff..07a9b408e3 100644 --- a/cmd/util/util.go +++ b/cmd/util/util.go @@ -193,7 +193,8 @@ To install kubectl, please %s the following: To disable this message, run the following: minikube config set WantKubectlDownloadMsg false -========================================\n`, - verb, installInstructions, constants.DefaultKubernetesVersion, runtime.GOOS, runtime.GOARCH) +======================================== +`, + verb, fmt.Sprintf(installInstructions, constants.DefaultKubernetesVersion, runtime.GOOS, runtime.GOARCH)) } }