Strip the value, actually, to trim the front newline

This commit is contained in:
Mitchell Hashimoto 2013-01-15 21:57:10 -08:00
parent 6c2e1c354f
commit 776a1e446b
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ module Vagrant
# Insert the new block into the value
new_block = <<BLOCK
# VAGRANT-BEGIN: #{key}
#{value.chomp}
#{value.strip}
# VAGRANT-END: #{key}
BLOCK