Skip to content

Commit

Permalink
Merge pull request #345 from test-kitchen/sp/fix-hyperv-defaults
Browse files Browse the repository at this point in the history
Hyper-V: Ensure default switch name is always wrapped in quotes
  • Loading branch information
Seth Thomas authored Feb 22, 2018
2 parents baabbf3 + 1ee2f61 commit c05402d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kitchen-vagrant.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require "English"
Gem::Specification.new do |gem|
gem.name = "kitchen-vagrant"
gem.version = Kitchen::Driver::VAGRANT_VERSION
gem.license = "Apache 2.0"
gem.license = "Apache-2.0"
gem.authors = ["Fletcher Nichol"]
gem.email = ["[email protected]"]
gem.description = "Kitchen::Driver::Vagrant - A Vagrant Driver for Test Kitchen."
Expand Down
2 changes: 1 addition & 1 deletion lib/kitchen/driver/vagrant.rb
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def finalize_network!
if config[:provider] == "hyperv" && config[:network].empty?
config[:network].push([
"public_network",
"bridge: #{hyperv_switch}",
"bridge: \"#{hyperv_switch}\"",
])
end
end
Expand Down

0 comments on commit c05402d

Please sign in to comment.