Properly convert provider name to symbol when searching for boxes
[GH-1691]
This commit is contained in:
parent
4f563e3be6
commit
ccfd321ef9
|
@ -25,6 +25,8 @@ BUG FIXES:
|
||||||
carry on checks whether the halt succeeded. [GH-1679]
|
carry on checks whether the halt succeeded. [GH-1679]
|
||||||
- Handle the case where a roles path for Chef solo isn't properly
|
- Handle the case where a roles path for Chef solo isn't properly
|
||||||
defined. [GH-1665]
|
defined. [GH-1665]
|
||||||
|
- Finding V1 boxes now works properly again to avoid "box not found"
|
||||||
|
errors. [GH-1691]
|
||||||
|
|
||||||
## 1.2.2 (April 23, 2013)
|
## 1.2.2 (April 23, 2013)
|
||||||
|
|
||||||
|
|
|
@ -234,7 +234,7 @@ module Vagrant
|
||||||
|
|
||||||
# If we're looking for a VirtualBox box, then we check if there is
|
# If we're looking for a VirtualBox box, then we check if there is
|
||||||
# a V1 box.
|
# a V1 box.
|
||||||
if provider == :virtualbox
|
if provider.to_sym == :virtualbox
|
||||||
# Check if a V1 version of this box exists, and if so, raise an
|
# Check if a V1 version of this box exists, and if so, raise an
|
||||||
# exception notifying the caller that the box exists but needs
|
# exception notifying the caller that the box exists but needs
|
||||||
# to be upgraded. We don't do the upgrade here because it can be
|
# to be upgraded. We don't do the upgrade here because it can be
|
||||||
|
|
Loading…
Reference in New Issue