Remove the redundant code in util.go

update pull request
pull/5471/head
xichengliudui 2019-09-26 18:20:04 +08:00
parent 115fc4fd95
commit 7ebef128f3
1 changed files with 6 additions and 6 deletions

View File

@ -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"
)