Merge pull request #46 from emyl/provider-to-sym

Properly convert provider command option to symbol
This commit is contained in:
Bryan Cribbs 2013-11-15 17:08:47 -08:00
commit cac3589451
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ module VagrantPlugins
o.on('--provider provider', String, o.on('--provider provider', String,
'Update machines with the specific provider.') do |provider| 'Update machines with the specific provider.') do |provider|
options[:provider] = provider options[:provider] = provider.to_sym
end end
end end