Skip to content

Commit 256c9e6

Browse files
committed
Unfill lines when generating release notes
1 parent fb5ce40 commit 256c9e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ rel_notes:
2727

2828
echo -e "Difftastic is a structural diff tool that understands syntax. See [the manual](https://difftastic.wilfred.me.uk/) to get started, and [the changelog](https://github.com/Wilfred/difftastic/blob/master/CHANGELOG.md) for historical changes.\n"
2929

30-
rg --max-count 1 -B 9999 "released " CHANGELOG.md | tail -n +3 | head -n -2
30+
rg --max-count 1 -B 9999 "released " CHANGELOG.md | tail -n +3 | head -n -2 | awk 'BEGIN{RS="\n\n"; ORS="\n\n"} {gsub(/\n/, " "); print}'
3131

3232
man:
3333
pandoc --standalone --to man difft.1.md -o difft.1

0 commit comments

Comments
 (0)