Skip to content

Commit 589103c

Browse files
authored
Trim trailing empty line from README.md (#102)
1 parent 0bfb3d9 commit 589103c

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,11 @@ update:
2727
insert-example:
2828
./scripts/insert-example.bash
2929

30+
.PHONY: format-doc
31+
format-doc:
32+
# Trim trailing empty line
33+
sed -i -e '$${/^$$/d;}' README.md
34+
3035
.PHONY: after-gen
31-
after-gen: format insert-example
36+
after-gen: format insert-example format-doc
3237
./scripts/add-deprecation-warnings.bash

0 commit comments

Comments
 (0)