Skip to content

Commit 4ae7655

Browse files
committed
Fixes #209
1 parent df9d315 commit 4ae7655

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/vagrant-hostmanager/action/update_all.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def call(env)
3333
if p == @provider
3434
machine = @global_env.machine(name, p)
3535
state = machine.state
36-
if state.short_description.eql? 'active' || 'running'
36+
if ['active','running'].include?(state.short_description)
3737
@updater.update_guest(machine)
3838
end
3939
end

lib/vagrant-hostmanager/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module VagrantPlugins
22
module HostManager
3-
VERSION = '1.8.4'
3+
VERSION = '1.8.5'
44
end
55
end

0 commit comments

Comments
 (0)