Skip to content

Commit

Permalink
fix mistake logic
Browse files Browse the repository at this point in the history
  • Loading branch information
medyagh committed Jun 4, 2019
1 parent 79ba9a1 commit 7c8a0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 7c8a0e2

Please sign in to comment.