From 7c8a0e224bc91c21342de6cbedbb4664d2be049d Mon Sep 17 00:00:00 2001 From: Medya Gh Date: Tue, 4 Jun 2019 09:25:06 -0700 Subject: [PATCH] fix mistake logic --- pkg/minikube/cluster/cluster.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/cluster/cluster.go b/pkg/minikube/cluster/cluster.go index aa1fe9f82bbe..33fa7060d290 100644 --- a/pkg/minikube/cluster/cluster.go +++ b/pkg/minikube/cluster/cluster.go @@ -72,7 +72,7 @@ func init() { // CacheISO downloads and caches ISO. func CacheISO(config cfg.MachineConfig) error { - if config.VMDriver == constants.DriverNone { + if config.VMDriver != constants.DriverNone { if err := config.Downloader.CacheMinikubeISOFromURL(config.MinikubeISO); err != nil { return err }