providers/hyperv: remove unused var

This commit is contained in:
Mitchell Hashimoto 2014-02-26 11:12:42 -08:00
parent 5d19285774
commit 9fa4549105
1 changed files with 1 additions and 1 deletions

View File

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