Skip to content

Commit

Permalink
Ensure final newline
Browse files Browse the repository at this point in the history
  • Loading branch information
pbrisbin committed Jan 31, 2024
1 parent ab9bc20 commit c0792d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ runs:
# Accept newline-separated content on stdin and set it as the given
# output with those newlines replaced by spaces.
set_trimmed_output() {
{ printf '%s=' "$1"; tr '\n' ' '; } >>"$GITHUB_OUTPUT"
{ printf '%s=' "$1"; tr '\n' ' '; echo; } >>"$GITHUB_OUTPUT"
}
# Check if stack-arguments is specifying --resolver
Expand Down

0 comments on commit c0792d3

Please sign in to comment.