Skip to content

Commit

Permalink
Did go format check for travis build #4187
Browse files Browse the repository at this point in the history
  • Loading branch information
dpandhi-git committed May 3, 2019
1 parent ee4e514 commit 8286e5a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/minikube/cmd/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ func runStart(cmd *cobra.Command, args []string) {
exit.WithError("Failed to get command runner", err)
}

cr := configureRuntimes(host, runner,k8sVersion)
cr := configureRuntimes(host, runner, k8sVersion)

// prepareHostEnvironment uses the downloaded images, so we need to wait for background task completion.
waitCacheImages(&cacheGroup)
Expand All @@ -251,7 +251,7 @@ func runStart(cmd *cobra.Command, args []string) {
}

showKubectlConnectInfo(kubeconfig)

}

func showKubectlConnectInfo(kubeconfig *pkgutil.KubeConfigSetup) {
Expand Down Expand Up @@ -544,7 +544,7 @@ func configureRuntimes(h *host.Host, runner bootstrapper.CommandRunner, k8sVersi
exit.WithError(fmt.Sprintf("Failed runtime for %+v", config), err)
}
version, _ := cr.Version()
console.OutStyle(cr.Name(), "Configuring environment for Kubernetes %s on %s %s", k8sVersion,cr.Name(),version)
console.OutStyle(cr.Name(), "Configuring environment for Kubernetes %s on %s %s", k8sVersion, cr.Name(), version)
for _, v := range dockerOpt {
console.OutStyle("option", "opt %s", v)
}
Expand Down

0 comments on commit 8286e5a

Please sign in to comment.