From 2a6cf09b1d8ae1019cff33248670d5036f94877e Mon Sep 17 00:00:00 2001 From: Emiliano Ticci Date: Mon, 4 Nov 2013 17:19:29 +0100 Subject: [PATCH] Properly convert provider command option to symbol --- lib/vagrant-hostmanager/command.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-hostmanager/command.rb b/lib/vagrant-hostmanager/command.rb index 1634678..535e0d9 100644 --- a/lib/vagrant-hostmanager/command.rb +++ b/lib/vagrant-hostmanager/command.rb @@ -13,7 +13,7 @@ module VagrantPlugins o.on('--provider provider', String, 'Update machines with the specific provider.') do |provider| - options[:provider] = provider + options[:provider] = provider.to_sym end end