Skip to content

Commit

Permalink
Print a newline after printing json and non-json output
Browse files Browse the repository at this point in the history
  • Loading branch information
martini-source authored and mhutter committed Sep 20, 2024
1 parent 9758e00 commit 92d2319
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions transform-alert-message.awk
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,10 @@ BEGIN {
Ver = ""
Maturity = ""

print json_out
print json_out "\n"

} else {
print $0
print $0 "\n"
}
}

Expand Down

0 comments on commit 92d2319

Please sign in to comment.