commands/box: don't halt on metadata download failure [GH-6453]

This commit is contained in:
Mitchell Hashimoto 2015-11-19 18:50:39 -08:00
parent e7d529f331
commit 32f6accb25
2 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@ BUG FIXES:
- commands/box: the update command supports CA settings [GH-4473]
- commands/box: removing all versions and providers of a box will properly
clean all directories in `~/.vagrant.d/boxes` [GH-3570]
- commands/box: outdated global won't halt on metadata download failure [GH-6453]
- commands/package: when re-packaging a packaged box, preserve the
generated SSH key [GH-5780]
- commands/rdp: prefer `xfreerdp` if it is available on Linux [GH-6475]

View File

@ -66,7 +66,7 @@ module VagrantPlugins
md = nil
begin
md = box.load_metadata(download_options)
rescue Vagrant::Errors::DownloaderError => e
rescue Vagrant::Errors::BoxMetadataDownloadError => e
@env.ui.error(I18n.t(
"vagrant.box_outdated_metadata_error",
name: box.name,