Merge pull request #1990 from michaelglass/patch-2
fix regression preventing boxes that specify support for multiple formats
This commit is contained in:
commit
35dc2d2539
|
@ -135,7 +135,7 @@ module Vagrant
|
||||||
found = false
|
found = false
|
||||||
formats.each do |format|
|
formats.each do |format|
|
||||||
# Verify that the given provider matches what the box has.
|
# Verify that the given provider matches what the box has.
|
||||||
if box_provider.to_sym == format
|
if box_provider.to_sym == format.to_sym
|
||||||
found = true
|
found = true
|
||||||
break
|
break
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue