Skip to content

Commit

Permalink
Merge pull request #243 from OBrienCommaJosh/bugfix/236
Browse files Browse the repository at this point in the history
Fix generated Vagrantfile type issues
  • Loading branch information
mwrock authored Sep 20, 2016
2 parents 6ea67c9 + aefc66b commit a3fdf32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/Vagrantfile.erb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Vagrant.configure("2") do |c|
c.ssh.private_key_path = "<%= config[:ssh_key] %>"
<% end %>
<% config[:ssh].each do |key, value| %>
c.ssh.<%= key %> = <%= value.inspect %>
c.ssh.<%= key %> = <%= [true, false].include?(value) ? value : value.inspect %>
<% end %>
<% if config[:winrm] %>
<% config[:winrm].each do |key, value| %>
Expand Down

0 comments on commit a3fdf32

Please sign in to comment.