core: box removal of a V1 box works

This commit is contained in:
Mitchell Hashimoto 2013-12-12 16:17:53 -08:00
parent b3cbeddf3f
commit 8a0241f2b4
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
BUG FIXES: BUG FIXES:
- core: box removal of a V1 box works
- guests/debian,ubuntu: fix change\_host\_name for FQDNs with trailing - guests/debian,ubuntu: fix change\_host\_name for FQDNs with trailing
dots [GH-2610] dots [GH-2610]
- guests/freebsd: configuring networks in the guest works properly - guests/freebsd: configuring networks in the guest works properly

View File

@ -18,7 +18,7 @@ module Vagrant
begin begin
box = env[:box_collection].find(box_name, box_provider) box = env[:box_collection].find(box_name, box_provider)
rescue Vagrant::Errors::BoxUpgradeRequired rescue Vagrant::Errors::BoxUpgradeRequired
@env.boxes.upgrade(box_name) env[:box_collection].upgrade(box_name)
retry retry
end end