From 7ebef128f3e364c885f9642a8d9f7c912141278f Mon Sep 17 00:00:00 2001 From: xichengliudui <1693291525@qq.com> Date: Thu, 26 Sep 2019 18:20:04 +0800 Subject: [PATCH] Remove the redundant code in util.go update pull request --- pkg/util/utils.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkg/util/utils.go b/pkg/util/utils.go index c549ca4ebe..ec2d8f6faf 100644 --- a/pkg/util/utils.go +++ b/pkg/util/utils.go @@ -34,13 +34,13 @@ import ( "k8s.io/minikube/pkg/minikube/out" ) -// ErrPrefix notes an error -const ErrPrefix = "! " - -// OutPrefix notes output -const OutPrefix = "> " - const ( + // ErrPrefix notes an error + ErrPrefix = "! " + + // OutPrefix notes output + OutPrefix = "> " + downloadURL = "https://storage.googleapis.com/minikube/releases/%s/minikube-%s-amd64%s" )