Skip to content

Commit

Permalink
Merge pull request #309 from silverl/master
Browse files Browse the repository at this point in the history
Fix detection of vagrant-winrm plugin.
  • Loading branch information
Seth Thomas authored Jul 24, 2017
2 parents 9b65a33 + 53bfc3d commit 5577ded
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kitchen/driver/vagrant.rb
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ def winrm_plugin_installed?

self.class.winrm_plugin_passed = run_silently(
"#{config[:vagrant_binary]} plugin list", :cwd => Dir.pwd).
split("\n").find { |line| line =~ /^vagrant-winrm\s+/ }
split("\n").find { |line| line =~ /vagrant-winrm\s+/ }
end
end
end
Expand Down

0 comments on commit 5577ded

Please sign in to comment.