fix regression preventing boxes that specify support for multiple formats.

don't know if this is the right place for this fix.  maybe formats should be an array of symbols.
This commit is contained in:
Michael Glass 2013-07-26 13:16:53 -07:00
parent 536ea95ea3
commit 9a00473029
1 changed files with 1 additions and 1 deletions

View File

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