Skip to content

Commit 2f90016

Browse files
committed
Correct command to remove empty lines
1 parent 6759259 commit 2f90016

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/platform-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
echo "::group::Report CSV"
8383
cat "$report"
8484
echo "::endgroup::"
85-
markdown_table=$(csv2md "$report" | tr -d '\r')
85+
markdown_table=$(csv2md "$report" | sed -e '/^[[:space:]]*$/d')
8686
echo "::group::Report Markdown"
8787
echo "$markdown_table"
8888
echo "::endgroup::"

0 commit comments

Comments
 (0)