Fix interrupted? call in boot

This commit is contained in:
Mitchell Hashimoto 2011-12-22 21:50:20 -08:00
parent 963bdff9fd
commit c0fabbe2bd
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module Vagrant
# Return true so that the vm_failed_to_boot error doesn't # Return true so that the vm_failed_to_boot error doesn't
# get shown # get shown
return true if @env.interrupted? return true if @env[:interrupted]
sleep 2 if !@env["vagrant.test"] sleep 2 if !@env["vagrant.test"]
end end