From 9fa4549105cfe2a422bbf0c908774721676da476 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 26 Feb 2014 11:12:42 -0800 Subject: [PATCH] providers/hyperv: remove unused var --- plugins/providers/hyperv/action/start_instance.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/providers/hyperv/action/start_instance.rb b/plugins/providers/hyperv/action/start_instance.rb index d97924c04..17c5b9d57 100644 --- a/plugins/providers/hyperv/action/start_instance.rb +++ b/plugins/providers/hyperv/action/start_instance.rb @@ -9,7 +9,7 @@ module VagrantPlugins def call(env) env[:ui].output('Starting the machine...') options = { vm_id: env[:machine].id } - response = env[:machine].provider.driver.execute('start_vm.ps1', options) + env[:machine].provider.driver.execute('start_vm.ps1', options) @app.call(env) end