Skip to content

Commit

Permalink
Merge pull request #568 from edestecd/master
Browse files Browse the repository at this point in the history
future parser converts explicit undef to empty string
  • Loading branch information
igalic committed Sep 16, 2014
2 parents 443ff06 + fa96854 commit 1bd8f56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/my.cnf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<% vi.each do |vii| -%>
<%= ki %> = <%= vii %>
<% end -%>
<% elsif vi != :undef -%>
<% elsif ![nil, '', :undef].include?(vi) -%>
<%= ki %> = <%= vi %>
<% end -%>
<% end -%>
Expand Down

0 comments on commit 1bd8f56

Please sign in to comment.