Skip to content

Commit

Permalink
Merge pull request #3221 from tstromberg/iso_errors
Browse files Browse the repository at this point in the history
Include ISO URL and reduce stutter in download error message
  • Loading branch information
tstromberg authored Oct 19, 2018
2 parents 2aabf1f + 3e256a0 commit b93c22b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/minikube/cluster/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ func createHost(api libmachine.API, config cfg.MachineConfig) (*host.Host, error

if config.VMDriver != "none" {
if err := config.Downloader.CacheMinikubeISOFromURL(config.MinikubeISO); err != nil {
return nil, errors.Wrap(err, "Error attempting to cache minikube ISO from URL")
return nil, errors.Wrap(err, "unable to cache ISO")
}
}

Expand Down
2 changes: 1 addition & 1 deletion pkg/util/downloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (f DefaultDownloader) CacheMinikubeISOFromURL(isoURL string) error {

fmt.Println("Downloading Minikube ISO")
if err := download.ToFile(isoURL, f.GetISOCacheFilepath(isoURL), options); err != nil {
return errors.Wrap(err, "Error downloading Minikube ISO")
return errors.Wrap(err, isoURL)
}

return nil
Expand Down

0 comments on commit b93c22b

Please sign in to comment.