Skip to content

Commit

Permalink
Fixes #209
Browse files Browse the repository at this point in the history
  • Loading branch information
seth-reeser committed Jul 20, 2016
1 parent df9d315 commit 4ae7655
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/vagrant-hostmanager/action/update_all.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def call(env)
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
Expand Down
2 changes: 1 addition & 1 deletion lib/vagrant-hostmanager/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module VagrantPlugins
module HostManager
VERSION = '1.8.4'
VERSION = '1.8.5'
end
end

0 comments on commit 4ae7655

Please sign in to comment.