HyperV provider resume. GH-3336

Fix for vagrant resume command for HyperV provider. Fixed the variable
name in action builder block.
This commit is contained in:
Ramakrishnan 2014-03-27 13:04:28 +05:30
parent f7adeadf8d
commit 41e1a7e0e4
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ module VagrantPlugins
Vagrant::Action::Builder.new.tap do |b|
b.use HandleBox
b.use ConfigValidate
b.use Call, IsState, :not_created do |env, b2|
if env1[:result]
b.use Call, IsState, :not_created do |env, b1|
if env[:result]
b1.use Message, I18n.t("vagrant_hyperv.message_not_created")
next
end