We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df9d315 commit 4ae7655Copy full SHA for 4ae7655
lib/vagrant-hostmanager/action/update_all.rb
@@ -33,7 +33,7 @@ def call(env)
33
if p == @provider
34
machine = @global_env.machine(name, p)
35
state = machine.state
36
- if state.short_description.eql? 'active' || 'running'
+ if ['active','running'].include?(state.short_description)
37
@updater.update_guest(machine)
38
end
39
lib/vagrant-hostmanager/version.rb
@@ -1,5 +1,5 @@
1
module VagrantPlugins
2
module HostManager
3
- VERSION = '1.8.4'
+ VERSION = '1.8.5'
4
5
0 commit comments