Fixes #209
This commit is contained in:
parent
df9d315320
commit
4ae7655be4
|
@ -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
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
module VagrantPlugins
|
||||
module HostManager
|
||||
VERSION = '1.8.4'
|
||||
VERSION = '1.8.5'
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue