This commit is contained in:
Seth Reeser 2016-07-20 15:40:56 -04:00
parent df9d315320
commit 4ae7655be4
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ module VagrantPlugins
if p == @provider
machine = @global_env.machine(name, p)
state = machine.state
if state.short_description.eql? 'active' || 'running'
if ['active','running'].include?(state.short_description)
@updater.update_guest(machine)
end
end

View File

@ -1,5 +1,5 @@
module VagrantPlugins
module HostManager
VERSION = '1.8.4'
VERSION = '1.8.5'
end
end