Skip to content

Commit

Permalink
Merge pull request #31 from albertsj1/vbox_customize_missing_quotes
Browse files Browse the repository at this point in the history
add some quotes around Vagrantfile value
  • Loading branch information
fnichol committed Jul 23, 2013
2 parents b914e7e + 1d0b59b commit c13d928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/kitchen/vagrant/vagrantfile_creator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def provider

def virtualbox_customize(arr)
config[:customize].each do |key, value|
arr << %{ p.customize ["modifyvm", :id, "--#{key}", #{value}]}
arr << %{ p.customize ["modifyvm", :id, "--#{key}", "#{value}"]}
end
end

Expand Down

0 comments on commit c13d928

Please sign in to comment.