Skip to content

Commit

Permalink
Improve HEREDOC support
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Heinen <[email protected]>
  • Loading branch information
thheinen committed Jan 12, 2025
1 parent 69e8b7c commit 686b52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixlib/shellout/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def __shell_out_command(*args, **options)
if options[:input]
command.concat "<<'COMMANDINPUT'\n"
command.concat __join_whitespace(options[:input])
command.concat "COMMANDINPUT\n"
command.concat "\nCOMMANDINPUT\n"
end
end

Expand Down

0 comments on commit 686b52e

Please sign in to comment.