Merge pull request #3221 from tstromberg/iso_errors

Include ISO URL and reduce stutter in download error message
pull/3268/head
Thomas Strömberg 2018-10-19 16:18:53 -07:00 committed by GitHub
commit b93c22b6ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

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